marimo-zero / config.toml
Marimo Zero Deploy
Deploy Marimo Zero 2026-03-24 23:38:58 UTC
8ab334f
Raw
History Blame Contribute Delete
1.09 kB
# ZeroClaw / Agent Zero Configuration
# Uses OmniRoute as the LLM provider
default_provider = "omniroute"
default_model = "gpt-4"
default_temperature = 0.7
[gateway]
host = "0.0.0.0"
port = 80
allow_public_bind = true
require_pairing = false
[skills]
open_skills_enabled = true
[memory]
backend = "sqlite"
auto_save = true
# OmniRoute Provider
[providers.omniroute]
api_url = "http://localhost:20128/v1"
api_key = "sk-omniroute"
[browser]
enabled = false
[http_request]
enabled = true
allowed_domains = ["*"]
[agents.primary]
provider = "omniroute"
model = "gpt-4"
system_prompt = """
You are an AI assistant running in Marimo Zero.
WORKSPACE:
- All files are stored in /app/workspace
- You share this workspace with the Marimo sandbox
MARIMO SANDBOX:
- Users can toggle a Marimo notebook panel for code execution
- Code written in Marimo runs in the same container
- Files created in Marimo are visible to you and vice versa
CAPABILITIES:
- Write and execute code via Marimo sandbox
- Read/write files in /app/workspace
- Use tools for file operations, HTTP requests, etc.
"""