Files
claude-cookbooks/.env.example
Alex Notov 8d1c93365b Revert CLAUDE_API_KEY to ANTHROPIC_API_KEY throughout the repository
Reverted all instances of CLAUDE_API_KEY back to ANTHROPIC_API_KEY to maintain
compatibility with existing infrastructure and GitHub secrets. This affects:
- Environment variable examples (.env.example files)
- Python scripts and notebooks
- Documentation and README files
- Evaluation scripts and test files

Other naming changes (Claude API, Claude Console, Claude Docs, Claude Cookbook) remain intact.

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-16 17:02:29 -06:00

15 lines
395 B
Plaintext

# Claude API Configuration
# Copy this file to .env and add your API key
# Get your API key at: https://platform.claude.com/settings/keys
ANTHROPIC_API_KEY=sk-ant-api03-...
# Optional: Default model for testing (recommended for cost savings)
CLAUDE_MODEL=claude-3-5-haiku-latest
# Optional: Test mode settings
TEST_MODE=true
MAX_TOKENS=10
# Optional: Verbose output for debugging
DEBUG=false