-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
48 lines (35 loc) · 1.55 KB
/
.env.example
File metadata and controls
48 lines (35 loc) · 1.55 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
# Consoul Environment Configuration
# Copy this file to .env and fill in your API keys
# NEVER commit your .env file to version control!
# ================================================================================
# API Keys - Required for respective providers
# ================================================================================
# Anthropic API Key (for Claude models)
# Get your key from: https://console.anthropic.com/
ANTHROPIC_API_KEY=sk-ant-...
# OpenAI API Key (for GPT models)
# Get your key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-...
# Google API Key (for Gemini models)
# Get your key from: https://makersuite.google.com/app/apikey
GOOGLE_API_KEY=...
# Ollama API Base URL (for local Ollama models)
# Default: http://localhost:11434
OLLAMA_API_BASE=http://localhost:11434
# ================================================================================
# Configuration Overrides - Optional
# ================================================================================
# Active profile to use (default, code-review, creative, fast)
# CONSOUL_PROFILE=default
# Override model provider (openai, anthropic, google, ollama)
# CONSOUL_MODEL_PROVIDER=anthropic
# Override model name
# CONSOUL_MODEL_NAME=claude-3-5-sonnet-20241022
# Override temperature (0.0-2.0)
# CONSOUL_TEMPERATURE=1.0
# Override maximum tokens to generate
# CONSOUL_MAX_TOKENS=4096
# Override conversation history file path
# CONSOUL_HISTORY_FILE=~/.consoul/history.json
# Set logging level (DEBUG, INFO, WARNING, ERROR)
# CONSOUL_LOG_LEVEL=INFO