From 4ee8c6ff7d8dcd5609b77161cc367b598e46a454 Mon Sep 17 00:00:00 2001 From: junjun Date: Tue, 23 Sep 2025 17:48:11 +0800 Subject: [PATCH] refactor: add parameter control table count --- backend/common/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/common/core/config.py b/backend/common/core/config.py index df1bf6f4e..64ff9242f 100644 --- a/backend/common/core/config.py +++ b/backend/common/core/config.py @@ -101,7 +101,7 @@ def SQLALCHEMY_DATABASE_URI(self) -> PostgresDsn | str: PG_POOL_RECYCLE: int = 3600 PG_POOL_PRE_PING: bool = True - TABLE_EMBEDDING_COUNT: int = 30 + TABLE_EMBEDDING_COUNT: int = 10 settings = Settings() # type: ignore