-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (33 loc) · 978 Bytes
/
Copy path.env.example
File metadata and controls
40 lines (33 loc) · 978 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
# PostgreSQL Configuration
POSTGRES_USER=postgres
POSTGRES_PASSWORD=your-postgres-password
# Neo4j Configuration
NEO4J_PASSWORD=your-neo4j-password
# JWT Configuration (REQUIRED in production)
# Must be at least 256 bits (32 characters) for HS256
JWT_SECRET=your-jwt-secret-at-least-256-bits-long-for-hs256-algorithm
# LLM Configuration
# 支持:openai, qwen, deepseek, anthropic
# 讯飞星程 Mass (OpenAI 兼容模式):
LLM_PROVIDER=openai
LLM_MODEL=astron-code-latest
LLM_API_KEY=your-api-key-here
LLM_BASE_URL=https://maas-coding-api.cn-huabei-1.xf-yun.com/v1
# 其他 LLM 示例:
# OpenAI:
# LLM_PROVIDER=openai
# LLM_MODEL=gpt-4o
# LLM_API_KEY=sk-xxx
# LLM_BASE_URL=https://api.openai.com/v1
# 阿里云通义千问:
# LLM_PROVIDER=qwen
# LLM_MODEL=qwen-max
# LLM_API_KEY=sk-xxx
# DeepSeek:
# LLM_PROVIDER=deepseek
# LLM_MODEL=deepseek-chat
# LLM_API_KEY=sk-xxx
# Anthropic:
# LLM_PROVIDER=anthropic
# LLM_MODEL=claude-sonnet-4-20250514
# LLM_API_KEY=sk-ant-xxx