|
1 | | -# for example gemini:gemini-2.5-pro or anthropic:claude-sonnet-4-20250514 or vertexai:... |
| 1 | +# ============================================================================= |
| 2 | +# MODEL CONFIGURATION |
| 3 | +# ============================================================================= |
| 4 | +# Choose ONE of the following model configurations: |
| 5 | + |
| 6 | +# --- OPTION 1: Direct API Access (gemini: or anthropic: prefix) --- |
| 7 | +# Use these for direct API access with API keys |
| 8 | +# CHAT_MODEL=gemini:gemini-2.5-pro |
| 9 | +# CHAT_MODEL=anthropic:claude-sonnet-4-20250514 |
| 10 | + |
| 11 | +# --- OPTION 2: Vertex AI Access (vertexai: prefix) --- |
| 12 | +# Use these for Google Cloud Vertex AI with service account credentials |
2 | 13 | # CHAT_MODEL=vertexai:gemini-2.5-pro |
3 | | -# CHAT_MODEL=vertexai:claude-sonnet-4@20250514 |
| 14 | +# CHAT_MODEL=vertexai:claude-sonnet-4-5 |
| 15 | + |
4 | 16 | CHAT_MODEL= |
5 | 17 |
|
6 | | -# API key or other credentials corresponding to the model above |
| 18 | +# ============================================================================= |
| 19 | +# CREDENTIALS - Use based on model prefix above |
| 20 | +# ============================================================================= |
| 21 | + |
| 22 | +# --- FOR gemini: prefix ONLY --- |
7 | 23 | # Request or use existing GCP project |
8 | 24 | # How to: https://source.redhat.com/departments/it/datacenter_infrastructure/itcloudservices/itpubliccloudpage/cloud/gcp/gcpgeminiapi#tab--gemini-models |
9 | 25 | # Google Cloud Console → API & Services → Credentials → API Keys → Show Key |
10 | 26 | GEMINI_API_KEY= |
11 | 27 |
|
| 28 | +# --- FOR anthropic: prefix ONLY --- |
| 29 | +#ANTHROPIC_API_KEY= |
| 30 | + |
| 31 | +# --- FOR vertexai: prefix ONLY --- |
| 32 | +# Setup instructions: |
| 33 | +# 1. Get jotnar-vertex-dev.json from Bitwarden (requires access to jotnar group) |
| 34 | +# 2. Place the file in .secrets/jotnar-vertex-dev.json in this repository |
| 35 | +# 3. Uncomment the variables below |
12 | 36 | # GOOGLE_VERTEX_PROJECT=jotnar-bot |
13 | 37 | # # Location is important! Anthropic's models are not available in all locations |
14 | 38 | # # Right now we have Sonnet 4.5 set up in global, 4.0 is not tied to a location |
15 | 39 | # GOOGLE_VERTEX_LOCATION=global |
16 | 40 | # GOOGLE_APPLICATION_CREDENTIALS=/home/beeai/jotnar-vertex-dev.json |
17 | 41 |
|
18 | | -#ANTHROPIC_API_KEY= |
19 | | - |
20 | 42 | # BeeAI Framework Configuration |
21 | 43 | BEEAI_MAX_ITERATIONS=255 |
22 | 44 | BEEAI_MAX_RETRIES_PER_STEP=5 |
|
0 commit comments