-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
22 lines (18 loc) · 792 Bytes
/
Copy path.env.example
File metadata and controls
22 lines (18 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Xantus Environment Variables
# Copy this file to .env and add your actual API keys
# ===== LLM API Keys =====
# For Anthropic (get from: https://console.anthropic.com/)
XANTUS_LLM__API_KEY=sk-ant-api03-your-key-here
# For OpenAI (if you switch to OpenAI)
# XANTUS_LLM__API_KEY=sk-your-openai-key-here
# ===== Embedding API Keys (optional) =====
# For OpenAI embeddings (if you switch from HuggingFace)
# XANTUS_EMBEDDING__API_KEY=sk-your-openai-key-here
# ===== Other Settings =====
# You can override any config.yaml setting with environment variables
# Format: XANTUS_<SECTION>__<KEY>=value (note: double underscore for nested config)
# Examples:
# XANTUS_LLM__TEMPERATURE=0.5
# XANTUS_LLM__MODEL=claude-3-5-haiku-20241022
# XANTUS_RAG__SIMILARITY_TOP_K=10
# XANTUS_SERVER__PORT=8001