-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
49 lines (40 loc) · 1.74 KB
/
.env.example
File metadata and controls
49 lines (40 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# StudyBuddy CLI - Environment Variables Example
# Copy this file to .env and add your actual API keys
# ====================================
# REQUIRED: Anthropic API Configuration
# ====================================
# Get your API key from: https://console.anthropic.com/api-keys
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# ====================================
# REQUIRED: Spring Profiles
# ====================================
# Profiles to activate (starwars adds fun logging, anthropic enables Claude)
SPRING_PROFILES_ACTIVE=starwars,anthropic
# ====================================
# OPTIONAL: Model Configuration
# ====================================
# Default model (Claude 3.5 Haiku is recommended for cost-effectiveness)
# Use the model name as reported by Embabel framework
# EMBABEL_MODELS_DEFAULT_LLM=claude-3-5-haiku-latest
# Temperature for responses (0.0-1.0, lower = more focused)
# EMBABEL_AI_ANTHROPIC_TEMPERATURE=0.3
# Max tokens for responses
# EMBABEL_AI_ANTHROPIC_MAX_TOKENS=2000
# ====================================
# OPTIONAL: Language Configuration
# ====================================
# Default language for outputs (es = Spanish, en = English)
# STUDYBUDDY_DEFAULT_LOCALE=es
# ====================================
# OPTIONAL: OpenAI API (not needed for StudyBuddy CLI)
# ====================================
# StudyBuddy CLI doesn't use embeddings, so OpenAI is not required
# If you need embeddings for other features, uncomment and add key:
# OPENAI_API_KEY=your_openai_api_key_here
# ====================================
# OPTIONAL: Development Settings
# ====================================
# Logging level (DEBUG, INFO, WARN, ERROR)
# LOGGING_LEVEL_COM_MICHEAD=INFO
# Enable verbose agent logging
# EMBABEL_AGENT_VERBOSE=false