-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
45 lines (35 loc) · 1.33 KB
/
Copy path.env.example
File metadata and controls
45 lines (35 loc) · 1.33 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
# LLM Provider Configuration
# Set LLM_PROVIDER to one of: ollama, openai, anthropic, google, groq, together
LLM_PROVIDER=ollama
# Ollama Configuration (default, free local AI)
OLLAMA_BASE_URL=http://localhost:11434
OLLAMA_MODEL=llama3.1:8b
# OpenAI Configuration
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_BASE_URL=https://api.openai.com
OPENAI_MODEL=gpt-4o-mini
# Anthropic (Claude) Configuration
ANTHROPIC_API_KEY=your_anthropic_api_key_here
ANTHROPIC_BASE_URL=https://api.anthropic.com
ANTHROPIC_MODEL=claude-3-5-haiku-20241022
# Google (Gemini) Configuration
GOOGLE_API_KEY=your_google_api_key_here
GOOGLE_BASE_URL=https://generativelanguage.googleapis.com
GOOGLE_MODEL=gemini-1.5-flash
# Groq Configuration
GROQ_API_KEY=your_groq_api_key_here
GROQ_BASE_URL=https://api.groq.com/openai
GROQ_MODEL=llama-3.1-8b-instant
# Together AI Configuration
TOGETHER_API_KEY=your_together_api_key_here
TOGETHER_BASE_URL=https://api.together.xyz
TOGETHER_MODEL=meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo
# Search Engine Configuration
# Set SEARCH_ENGINE to: disabled, searxng, serper, bing
SEARCH_ENGINE=disabled
# SearXNG Configuration (free, self-hosted search)
SEARXNG_URL=https://your-searxng-server.com
# Serper API Configuration (Google search)
SERPER_API_KEY=your_serper_api_key_here
# Bing Search API Configuration
BING_API_KEY=your_bing_api_key_here