-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example
More file actions
19 lines (15 loc) · 750 Bytes
/
Copy pathconfig.example
File metadata and controls
19 lines (15 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Example configuration file for summarize-text
# Copy to ~/.config/summarize-text/config and customize
# API Keys - Set at least one
export OPENAI_API_KEY="your-openai-api-key-here"
export CLAUDE_API_KEY="your-claude-api-key-here"
# export OLLAMA_API_URL="http://localhost:11434" # Optional: remote Ollama
# Default AI provider (optional - auto-detects if not set)
# Options: openai, claude, ollama
export DEFAULT_AI="openai"
# Model configurations
openai_model="gpt-4o-mini"
claude_model="claude-3-5-sonnet-20241022"
ollama_model="mistral"
# Custom pre-prompt (optional)
# pre_prompt="Briefly summarize the following text in a few bullet points, preserving the original meaning. At the end, call out themes that seem pertinent or interesting."