mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
* 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
18 lines
545 B
Bash
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
|