-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
19 lines (13 loc) · 668 Bytes
/
Copy path.env.example
File metadata and controls
19 lines (13 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Required: Your OpenAI API key
OPENAI_API_KEY=your_openai_api_key_here
# Optional: SearXNG URL for web search functionality, local instance normally no auth needed, added suport for using basic auth true or false
SEARXNG_URL=http://your_searxng_instance:8080
SEARXNG_USER=admin
SEARXNG_PASS=yourpassword
SEARXNG_AUTH_ENABLED=false
# Optional: OpenAI Realtime model selection
# Options: gpt-4o-realtime-preview-2024-12-17 (default, more powerful)
# gpt-4o-mini-realtime-preview-2024-12-17 (faster, lower cost)
OPENAI_REALTIME_MODEL=gpt-4o-realtime-preview-2024-12-17
# Optional: Server port for this app useful in docker builds (default: 3000)
PORT=3000