16 lines
401 B
Plaintext
16 lines
401 B
Plaintext
# Application
|
|
NODE_ENV=development
|
|
PORT=3000
|
|
FRONTEND_URL=http://localhost:5173
|
|
|
|
# Data Directory
|
|
DATA_DIR=./data
|
|
|
|
# LLM API Keys (配置你使用的 LLM 提供商)
|
|
OPENAI_API_KEY=your-openai-api-key
|
|
ANTHROPIC_API_KEY=your-anthropic-api-key
|
|
|
|
# Optional: Custom LLM Provider Settings
|
|
LLM_PROVIDER=openai # openai | anthropic | custom
|
|
LLM_MODEL=gpt-4 # 根据你的 provider 选择合适的模型
|