-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
29 lines (23 loc) · 803 Bytes
/
env.example
File metadata and controls
29 lines (23 loc) · 803 Bytes
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
# AI CLI Configuration
# Copy this file to .env and fill in your actual API keys
# OpenAI API Configuration
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_ORG_ID=your_openai_org_id_here # Optional
# Anthropic API Configuration
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Default Settings
DEFAULT_PROVIDER=openai # openai or anthropic
DEFAULT_MODEL=gpt-4 # gpt-4, gpt-3.5-turbo, claude-3-opus, claude-3-sonnet, claude-3-haiku
DEFAULT_TEMPERATURE=0.7
DEFAULT_MAX_TOKENS=4000
# Logging
LOG_LEVEL=INFO # DEBUG, INFO, WARNING, ERROR
LOG_FILE=ai_cli.log # Optional: specify log file path
# UI Settings
ENABLE_SYNTAX_HIGHLIGHTING=true
ENABLE_MARKDOWN_RENDERING=true
THEME=default # default, dark, light
# Cache Settings
ENABLE_CACHE=true
CACHE_DIR=.cache
CACHE_TTL=3600 # Cache TTL in seconds