biodsbench-adapter / config /llm-config.sh.example
starpacker52's picture
Add files using upload-large-folder tool
4c0ecfa verified
Raw
History Blame Contribute Delete
419 Bytes
#!/bin/bash
# LLM API Configuration (example)
# Copy this file to llm-config.sh and fill in your real credentials.
# llm-config.sh is git-ignored.
export API_KEY="${API_KEY:-your-api-key-here}"
export BASE_URL="${BASE_URL:-https://api.anthropic.com}"
export MODEL_NAME="${MODEL_NAME:-claude-opus-4-1-20250805}"
export GATEWAY_PROTOCOL="${GATEWAY_PROTOCOL:-anthropic}"
export AGENT_LOG_DIR="${AGENT_LOG_DIR:-./output}"