feat: VECTOR_STORE supports seekdb (#29658)

This commit is contained in:
longbingljw
2025-12-16 11:35:04 +08:00
committed by GitHub
parent a232da564a
commit 4cc6652424
5 changed files with 5 additions and 3 deletions

View File

@@ -107,7 +107,7 @@ class KeywordStoreConfig(BaseSettings):
class DatabaseConfig(BaseSettings):
# Database type selector
DB_TYPE: Literal["postgresql", "mysql", "oceanbase"] = Field(
DB_TYPE: Literal["postgresql", "mysql", "oceanbase", "seekdb"] = Field(
description="Database type to use. OceanBase is MySQL-compatible.",
default="postgresql",
)