16 lines
470 B
Bash
16 lines
470 B
Bash
# The API key must be provided at runtime and must never be committed.
|
|
GLM_API_KEY=replace-with-a-runtime-secret
|
|
|
|
# The gateway exposes an OpenAI-compatible chat-completions route.
|
|
GLM_API_BASE=https://llm-api.cowin.run
|
|
GLM_API_PATH=/v1/chat/completions
|
|
GLM_MODEL=glm-5.2
|
|
|
|
# Conservative defaults for structured quality-control output.
|
|
GLM_TIMEOUT_SECONDS=300
|
|
GLM_MAX_RETRIES=3
|
|
GLM_MAX_TOKENS=8192
|
|
GLM_TEMPERATURE=0.0
|
|
GLM_REASONING_EFFORT=high
|
|
GLM_THINKING_ENABLED=true
|