mirror of
https://github.com/RYDE-WORK/Langchain-Chatchat.git
synced 2026-01-23 07:13:27 +08:00
39 lines
701 B
Python
39 lines
701 B
Python
from typing import List
|
|
|
|
from langchain.embeddings.base import Embeddings
|
|
from langchain.schema import Document
|
|
|
|
from server.knowledge_base.kb_service.base import KBService
|
|
|
|
|
|
class DefaultKBService(KBService):
|
|
def do_create_kb(self):
|
|
pass
|
|
|
|
def do_drop_kb(self):
|
|
pass
|
|
|
|
def do_add_doc(self, docs: List[Document], embeddings: Embeddings):
|
|
pass
|
|
|
|
def do_clear_vs(self):
|
|
pass
|
|
|
|
def vs_type(self) -> str:
|
|
return "default"
|
|
|
|
def do_init(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
|