← Back to Getting Started
Getting Started

Configuration

Configure models, channels, sandboxes, and memory through ~/.iris/config.toml.

Example config.toml

[agent]
name = "iris"
default_model = "openai/gpt-5"

[memory]
backend = "sqlite"
path = "~/.iris/memory.db"

[sandbox]
backend = "docker"
image   = "iris/sandbox:latest"

[[channels]]
type  = "telegram"
token = "$TELEGRAM_BOT_TOKEN"