File size: 663 Bytes
490f3fe | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # One OpenAI-compatible DeepSeek endpoint is used by the benchmark Writer,
# subject-attribution pass, and evidence planner. The gateway must accept the
# model names deepseek-v4-flash and deepseek-v4-pro, or alias them accordingly.
TMCRA_WRITER_BASE_URL=https://your-writer-endpoint.example/v1
TMCRA_WRITER_TIMEOUT_SECONDS=180
TMCRA_WRITER_MAX_TOKENS=16384
# Comma-separated, non-empty, unique API keys. For a single key, keep the
# count at 1. If you add keys, update the count to the exact number of keys.
TMCRA_DEEPSEEK_WRITER_BASE_URL=https://your-planner-endpoint.example/v1
TMCRA_DEEPSEEK_WRITER_KEY_POOL=replace_me
TMCRA_DEEPSEEK_WRITER_KEY_POOL_COUNT=1
|