32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
model: gpt-4o-mini # Default model for command generation
|
|
temperature: 0
|
|
max_tokens: 500
|
|
|
|
# Safety: If set to False, commands returned from the AI will be run *without* prompting the user.
|
|
safety: True
|
|
|
|
# Streaming: If set to True, command generation will be displayed in real-time as tokens arrive.
|
|
# Set to False for traditional non-streaming behavior.
|
|
streaming: True
|
|
|
|
# Show a "Generating command: " prefix during streaming
|
|
# Set to False to remove the prefix and only show the command
|
|
show_generating_prefix: True
|
|
|
|
# UI Configuration: Controls the appearance and behavior of the user interface
|
|
ui:
|
|
# Enable rich text formatting for command explanations and output
|
|
rich_formatting: True
|
|
|
|
# Theme for syntax highlighting (options: monokai, github-dark, solarized-dark, etc.)
|
|
theme: "monokai"
|
|
|
|
# Command display style (options: simple, highlighted, panel)
|
|
command_style: "panel"
|
|
|
|
# Structured explanations: Generate more structured command explanations
|
|
structured_explanations: True
|
|
|
|
# Open AI API Key (optional): The key can aso be provided via environment variable (OPENAI_API_KEY), .env, or ~/.openai.apikey file
|
|
openai_api_key:
|