-
-
Notifications
You must be signed in to change notification settings - Fork 368
Expand file tree
/
Copy path.env.example
More file actions
18 lines (13 loc) · 564 Bytes
/
.env.example
File metadata and controls
18 lines (13 loc) · 564 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Example .env file for LLM tests
# Copy this to .env.llm-tests and fill in your API key
# Option 1: OpenAI (recommended for development)
export OPENAI_API_KEY=sk-your-openai-api-key-here
# Option 2: Google Gemini
# export GEMINI_API_KEY=your-gemini-api-key-here
# Option 3: Generic LLM API (specify provider)
# export LLM_API_KEY=your-api-key-here
# export LLM_PROVIDER=openai # or 'gemini'
# Enable LLM tests (required)
export RUN_LLM_TESTS=true
# Optional: Token limit for neighboring topics (default: 500)
# export LLM_NEIGHBORING_TOPICS_TOKEN_LIMIT=500