From 24383997ef185ba0c5726f429ae473d7838c622e Mon Sep 17 00:00:00 2001 From: akashmangoai Date: Fri, 11 Oct 2024 21:53:29 +0530 Subject: [PATCH] removed cloud based parameter which are not needed --- application/core/settings.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/application/core/settings.py b/application/core/settings.py index 5659020b..c8fe9c4a 100644 --- a/application/core/settings.py +++ b/application/core/settings.py @@ -69,10 +69,7 @@ class Settings(BaseSettings): # LanceDB vectorstore config LANCEDB_PATH: str = "/tmp/lancedb" # Path where LanceDB stores its local data - LANCEDB_URI: Optional[str] = "db://localhost:5432/lancedb" # URI for connecting to a LanceDB instance - LANCEDB_TABLE_NAME: Optional[str] = "gptcache" # Name of the table to use for storing vectors - LANCEDB_API_KEY: Optional[str] = None # API key for connecting to LanceDB cloud (if applicable) - LANCEDB_REGION: Optional[str] = None # Region for LanceDB cloud (if using cloud deployment) + LANCEDB_TABLE_NAME: Optional[str] = "docsgpts" # Name of the table to use for storing vectors BRAVE_SEARCH_API_KEY: Optional[str] = None FLASK_DEBUG_MODE: bool = False