Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ HOST=0.0.0.0
PORT=8083
LOG_LEVEL=INFO #DEBUG

MAX_TOKENS_LIMIT=4096
# Claude Code routinely requests >4k tokens per turn, especially with
# tool-use loops; reasoning-style models (Kimi-K2.5, DeepSeek-V3.2,
# GLM-5, Qwen3 thinking variants) also burn budget on hidden reasoning
# before producing visible output. 16k is a safer default; lower it if
# your provider's per-request cap is tighter.
MAX_TOKENS_LIMIT=16384
#MIN_TOKENS_LIMIT=4096
REQUEST_TIMEOUT=90
MAX_RETRIES=2
Expand Down
Loading