-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (31 loc) · 907 Bytes
/
.env.example
File metadata and controls
40 lines (31 loc) · 907 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
30
31
32
33
34
35
36
37
38
39
40
# Data Wings - Environment Variables Example
# Copy to .env and fill in your values
# LLM Provider Priority: gemini > poe > deepseek > qwen > openai
DW_LLM_PROVIDER=gemini
# Google AI Studio (Gemini) - Primary
# Get key at: https://aistudio.google.com/apikey
DW_GEMINI_API_KEY=your_gemini_api_key_here
DW_GEMINI_MODEL=gemini-2.0-flash
# Poe API - Backup
# Get key at: https://poe.com/api_key
DW_POE_API_KEY=your_poe_api_key_here
DW_POE_MODEL=GPT-4o
# DeepSeek (Optional)
DW_DEEPSEEK_API_KEY=
DW_DEEPSEEK_MODEL=deepseek-chat
# Qwen / DashScope (Optional)
DW_QWEN_API_KEY=
DW_QWEN_MODEL=qwen-plus
# OpenAI (Optional)
DW_OPENAI_API_KEY=
DW_OPENAI_MODEL=gpt-4-turbo-preview
# ClickHouse
DW_CLICKHOUSE_HOST=localhost
DW_CLICKHOUSE_PORT=8123
DW_CLICKHOUSE_DATABASE=data_wings
# Redis
DW_REDIS_URL=redis://localhost:6309/0
# Auth (JWT)
JWT_SECRET=change_me_in_dev
JWT_ISSUER=data-wings
JWT_TTL_MINUTES=60