-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
47 lines (40 loc) · 1.01 KB
/
.env.example
File metadata and controls
47 lines (40 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# API Configuration
API_HOST=0.0.0.0
API_PORT=8000
API_ENV=development
LOG_LEVEL=INFO
# Embedding Service Keys - No more needed
#VOYAGE_API_KEY=your_voyage_api_key_here
#OPENAI_API_KEY=your_openai_api_key_here
#COHERE_API_KEY=your_cohere_api_key_here
# Embedding Configuration
# Note: Include provider prefix (voyage/, openai/, cohere/)
PRIMARY_EMBEDDING_MODEL=voyage/voyage-3
PRIMARY_EMBEDDING_API_KEY=adjnaksjnd
FALLBACK_EMBEDDING_MODEL=openai/text-embedding-3-small
FALLBACK_EMBEDDING_API_KEY=asdkn
EMBEDDING_BATCH_SIZE=100
EMBEDDING_CACHE_TTL=3600
# Vector Database
QDRANT_HOST=localhost
QDRANT_PORT=6333
QDRANT_GRPC_PORT=6334
QDRANT_PREFER_GRPC=true
QDRANT_COLLECTION_NAME=tools
# Cache
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD=
REDIS_CACHE_TTL=3600
# Tool Filtering
MAX_TOOLS_TO_RETURN=10
PRIMARY_SIMILARITY_THRESHOLD=0.7
FALLBACK_SIMILARITY_THRESHOLD=0.7
# Evaluation
MLFLOW_TRACKING_URI=file:./mlruns
PHOENIX_PORT=6006
# Security
API_KEY_HEADER=X-API-Key
ENABLE_API_KEY=false
API_KEYS=key1,key2,key3