21 lines
601 B
Plaintext
21 lines
601 B
Plaintext
# Qwen Code OAuth
|
|
# Get OAuth credentials from https://qwen.ai
|
|
QWEN_CLIENT_ID=
|
|
QWEN_CLIENT_SECRET=
|
|
QWEN_PROXY_ENDPOINT=http://localhost:8080/v1
|
|
|
|
# Ollama Cloud API
|
|
# Get API key from https://ollama.com/cloud
|
|
OLLAMA_API_KEY=
|
|
OLLAMA_ENDPOINT=https://ollama.com/api
|
|
|
|
# Z.AI Plan API
|
|
# Get API key from https://docs.z.ai
|
|
ZAI_API_KEY=
|
|
ZAI_GENERAL_ENDPOINT=https://api.z.ai/api/paas/v4
|
|
ZAI_CODING_ENDPOINT=https://api.z.ai/api/coding/paas/v4
|
|
|
|
# Site Configuration (Required for OAuth in production)
|
|
# Set to your production URL (e.g., https://your-app.vercel.app)
|
|
NEXT_PUBLIC_SITE_URL=http://localhost:6002
|