mirror of
https://github.com/RYDE-WORK/Langchain-Chatchat.git
synced 2026-01-29 02:03:37 +08:00
28 lines
463 B
Python
28 lines
463 B
Python
from server.knowledge_base.kb_service.base import KBService
|
|
|
|
|
|
class DefaultKBService(KBService):
|
|
def vs_type(self) -> str:
|
|
return "default"
|
|
|
|
def do_create_kbs(self):
|
|
pass
|
|
|
|
def do_init(self):
|
|
pass
|
|
|
|
def do_drop_kbs(self):
|
|
pass
|
|
|
|
def do_search(self):
|
|
pass
|
|
|
|
def do_insert_multi_knowledge(self):
|
|
pass
|
|
|
|
def do_insert_one_knowledge(self):
|
|
pass
|
|
|
|
def do_delete_doc(self):
|
|
pass
|