forked from rcarmo/apfelstrudel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (22 loc) · 767 Bytes
/
.env.example
File metadata and controls
29 lines (22 loc) · 767 Bytes
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
# OpenAI
OPENAI_API_KEY=sk-your-api-key-here
# Or Azure OpenAI (uncomment and fill in)
# AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com
# AZURE_OPENAI_DEPLOYMENT=gpt-4o-mini
# AZURE_OPENAI_API_KEY=your-azure-key
# AZURE_OPENAI_API_VERSION=2024-10-01-preview
# If no API key is set, Entra ID (DefaultAzureCredential) is used automatically.
# LM Studio (uncomment and fill in)
# APFELSTRUDEL_PROVIDER=lmstudio
# APFELSTRUDEL_MODEL=qwen3.5-35b-a3b
# APFELSTRUDEL_LMSTUDIO_HOST=http://localhost:1234/v1
# Provider: "openai", "azure" or "lmstudio"
APFELSTRUDEL_PROVIDER=openai
# Model to use
APFELSTRUDEL_MODEL=gpt-4o-mini
# Max agentic loop steps
APFELSTRUDEL_MAX_STEPS=16
# Request timeout (ms)
APFELSTRUDEL_TIMEOUT_MS=30000
# Server port
PORT=3000