Files
shellgenius/config.yaml
7000pctAUTO 7faa1a8b5c
Some checks failed
CI / test (push) Failing after 5s
CI / lint (push) Successful in 5s
CI / type-check (push) Failing after 6s
Add configuration files
2026-02-04 10:57:01 +00:00

36 lines
619 B
YAML

# Ollama Configuration
ollama:
host: "localhost:11434"
model: "codellama"
timeout: 120
# Safety Settings
safety:
level: "moderate"
warn_on_destructive: true
allow_dangerous: false
blocked_patterns:
- "rm -rf /"
- ":(){:|:&};:"
- "chmod 777"
- "sudo su"
- "dd if=/dev/zero"
# UI Configuration
ui:
theme: "default"
show_syntax_highlighting: true
auto_suggest: true
max_history: 100
# Shell Preferences
shell:
default: "bash"
prefer_shebang: true
# History Learning
history:
enabled: true
storage_path: "~/.config/shellgenius/history.yaml"
similarity_threshold: 0.7