28 lines
1.4 KiB
Plaintext
28 lines
1.4 KiB
Plaintext
# ── Provider API keys ───────────────────────────────────────────────────────
|
|
# Only keys for models you intend to use are required.
|
|
|
|
# Anthropic — for claude-sonnet-4-6
|
|
# Get key: https://console.anthropic.com/settings/keys
|
|
ANTHROPIC_API_KEY=your-anthropic-key
|
|
|
|
# OpenAI — for gpt-4o / gpt-5.x
|
|
# Get key: https://platform.openai.com/api-keys
|
|
OPENAI_API_KEY=your-openai-key
|
|
|
|
# Google AI Studio — for gemini-3-flash-preview and gemini-robotics-er-1.6
|
|
# Get key: https://aistudio.google.com/app/apikey
|
|
GOOGLE_API_KEY=your-google-ai-studio-key
|
|
|
|
# Ollama Cloud — for qwen3.5:397b-cloud and llama4:maverick-cloud
|
|
# Get key: https://ollama.com → account → API keys
|
|
OLLAMA_API_KEY=your-ollama-api-key
|
|
|
|
# ── Server ──────────────────────────────────────────────────────────────────
|
|
PORT=3000
|
|
JOB_CONCURRENCY=3
|
|
|
|
# ── Subject Crop ────────────────────────────────────────────────────────────
|
|
# Padding factor (0-1) added to each side of the detected bounding box.
|
|
# 0.15 = 15% of the box width/height added as margin on each side.
|
|
BBOX_PADDING=0.15
|