The wizard's fresh config.toml now carries both [vision.*] blocks, and its credential pass reads the ACTIVE provider before prompting: an anthropic setup asks for ANTHROPIC_API_KEY as before, a keyed openai-compatible endpoint asks for its configured key_env instead, and a keyless local runtime says so and asks for nothing. Doc sweep for the same: README's stage list and knobs line, CLAUDE.md's config summary (which still claimed username lived there), the Help flow's "Claude vision" wording, and .env.example's ANTHROPIC_API_KEY note. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016jXZFSTZQKzAC8fqpWSz9g
14 lines
452 B
Bash
14 lines
452 B
Bash
# Copy to .env and fill in. .env is gitignored — never commit real values.
|
|
|
|
# BGG XML API application token (register at https://boardgamegeek.com/applications)
|
|
BGG_API_TOKEN=
|
|
|
|
# BGG website login for the upload stage (Playwright)
|
|
BGG_USERNAME=
|
|
BGG_PASSWORD=
|
|
|
|
# Anthropic API key for the vision extract stage
|
|
# default vision provider; not needed for an openai-compatible/local
|
|
# setup — see the [vision.*] blocks in config.toml
|
|
ANTHROPIC_API_KEY=
|