Configuration & Theming Improvements #14

Open
opened 2025-09-28 16:48:04 +02:00 by mpuchstein · 1 comment
Owner
  • Expand config.toml documentation with examples for editor, file selector, provider settings, and theming.
  • Add color-blind-friendly theme presets and expose font/color preferences.
- Expand `config.toml` documentation with examples for editor, file selector, provider settings, and theming. - Add color-blind-friendly theme presets and expose font/color preferences.
vikingowl added the enhancement label 2025-09-28 16:52:19 +02:00
Author
Owner

an idea for configuring providers

[providers.ollama]
enabled = true
base_url = "http://localhost:11434"
models = ["llama3.2:latest", "qwen2.5-coder:7b"]

[providers.cloud_x]
enabled = false
api_key_env = "CLOUD_X_API_KEY"
models = ["coder-pro-32k", "general-8k"]

[routing.profiles.local_only]
planner.model = "llama3.2:latest"
executor.model = "qwen2.5-coder:7b"
verifier.model = "llama3.2:latest"
budget.tokens = 120000
allow.tools = ["fs.read", "fs.diff", "git.status", "git.apply"]
deny.tools = ["net.http"]

[routing.active_profile]
name = "local_only"
an idea for configuring providers ``` [providers.ollama] enabled = true base_url = "http://localhost:11434" models = ["llama3.2:latest", "qwen2.5-coder:7b"] [providers.cloud_x] enabled = false api_key_env = "CLOUD_X_API_KEY" models = ["coder-pro-32k", "general-8k"] [routing.profiles.local_only] planner.model = "llama3.2:latest" executor.model = "qwen2.5-coder:7b" verifier.model = "llama3.2:latest" budget.tokens = 120000 allow.tools = ["fs.read", "fs.diff", "git.status", "git.apply"] deny.tools = ["net.http"] [routing.active_profile] name = "local_only" ```
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Owlibou/owlen#14