File size: 386 Bytes
adc02fa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # OpenClaude API Configuration Example
# Copy to .env and fill in your credentials
# OpenClaude API key (required)
OPENCLAUDE_API_KEY=your_api_key_here
# OpenClaude base URL (default: https://open-claude.com/v1)
OPENCLAUDE_BASE_URL=https://open-claude.com/v1
# Model to use (gpt-4, claude-3-opus, etc.)
OPENCLAUDE_MODEL=gpt-4
# Note: Never commit .env file with actual credentials!
|