feat: add seekdb which is lite version of oceanbase (#12692)

### What problem does this PR solve?

Add seekdb as doc_engine wich is the lite version of oceanbase.
close #12691
### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
longbingljw
2026-01-19 16:07:43 +08:00
committed by GitHub
parent b27dc26be3
commit c4a982e9fa
5 changed files with 54 additions and 0 deletions

View File

@ -257,6 +257,9 @@ def init_settings():
elif lower_case_doc_engine == "oceanbase":
OB = get_base_config("oceanbase", {})
docStoreConn = rag.utils.ob_conn.OBConnection()
elif lower_case_doc_engine == "seekdb":
OB = get_base_config("seekdb", {})
docStoreConn = rag.utils.ob_conn.OBConnection()
else:
raise Exception(f"Not supported doc engine: {DOC_ENGINE}")