chore: update workflow permissions and fix paths in settings (#2227)

* chore: update workflow permissions and fix paths in settings

* dep

* dep upgraes
This commit is contained in:
Alex
2025-12-25 12:26:01 +00:00
committed by GitHub
parent b0eee7be24
commit aef3e0b4bb
6 changed files with 20 additions and 7 deletions

View File

@@ -130,7 +130,7 @@ class Settings(BaseSettings):
MILVUS_TOKEN: Optional[str] = ""
# LanceDB vectorstore config
LANCEDB_PATH: str = "/tmp/lancedb" # Path where LanceDB stores its local data
LANCEDB_PATH: str = "./data/lancedb" # Path where LanceDB stores its local data
LANCEDB_TABLE_NAME: Optional[str] = (
"docsgpts" # Name of the table to use for storing vectors
)