ReMe/example.env
诸岳 0dff85b9b5
feat(store): seekdb file and vector stores via pyseekdb (embedded + remote) (#207)
* feat(seekdb): add Seekdb file and vector stores with pyseekdb>=1.2.0

* refactor(seekdb): add pyseekdb_conn and remote-only host/port config

* refactor(embedding): remove env fallbacks from BaseEmbeddingModel; pass credentials in tests

* refactor(seekdb): drop tenant from client kwargs; default database test and empty password

* fix(deps): gate pyseekdb to Python >=3.11 for CI 3.10 compatibility

* fix(seekdb): satisfy pre-commit pylint and formatting for seekdb stores
2026-05-22 10:55:48 +08:00

18 lines
545 B
Bash

# LLM (required for most flows)
LLM_API_KEY=sk-xxxx
LLM_BASE_URL=https://xxxx/v1
# Embedding (optional; Application uses EMBEDDING_* or falls back to LLM_* when unset)
#EMBEDDING_API_KEY=sk-xxxx
#EMBEDDING_BASE_URL=https://xxxx/v1
# Web search (optional)
#TAVILY_API_KEY=xxxx
# Seekdb / pyseekdb (optional; requires Python >=3.11, installed automatically on 3.11+)
# Embedded: leave SEEKDB_HOST unset. Remote: set host (and port if not 2881).
#SEEKDB_HOST=127.0.0.1
#SEEKDB_PORT=2881
#SEEKDB_USER=root
#SEEKDB_PASSWORD=
#SEEKDB_DATABASE=test