ain_…). Omnara stores the input first, then adds it to the timeline as a durable agent_input event when the agent processes it. This lets a busy agent accept new messages without interrupting its current work.
There are four input kinds. You only create the first directly; the others are produced by their own endpoints:
Send a message
- API
- Dashboard
The examples assume the client,
orgID, and projectID setup from the quickstart, with the $AGENT ID above available as agentID for the SDK. The CLI has no command for sending input — use the REST API or the SDK.state: received means Omnara accepted the input. When the agent processes it, the state becomes resolved and a matching event appears on the timeline. An input can instead become canceled or rejected if it is withdrawn or cannot be delivered.If your system retries requests, send an Idempotency-Key to avoid delivering the same message twice.Full schema and playground: Create agent input.
Attach files and images
An input can include files alongside text. Inline files are base64-encoded, with limits of 10 MiB per file, 24 MiB combined, and 20 files per input:media_ref in the timeline.
Queued vs steering
delivery_mode decides when a busy agent receives a message:
queued(default) waits until the agent is ready to start new work. Use it for a new task or follow-up.steeringjoins the current turn at the next model call, ahead of queued messages. Use it for an urgent correction such as “stop using the staging database.”
immediate, that you can’t choose. Only content inputs take queued or steering.
cancel_open_interactions: true when the correction makes an open approval or question irrelevant. Omnara cancels those interactions before delivering the message. This field is only valid with delivery_mode: "steering".
Inspect and manage the queue
The queue is API-only for now; the dashboard has no queue view. Through the API, you can list waiting inputs, change their order or delivery mode, or cancel them.List waiting inputs
409.
Full schemas and playground: List queued backlog inputs · Cancel · Move · Promote · Demote.
Change the config mid-conversation
You can change which config an agent uses without restarting its conversation. Send the new config source to switch models, tools, permissions, or instructions. Omnara validates the config and records the change on the timeline. This is not available in the dashboard yet.Full schema and playground: Update agent config.
Who said that? Actors and attribution
Every input is attributed to whoever authenticated the request. When a person calls the API with their own token, that’s exactly what you want. But often the people talking to your agent aren’t Omnara users at all — they’re your customers, typing into your chat frontend or ticketing system. Your backend relays their messages with its own token, so without help the timeline would credit every message to that one backend identity. An actor solves this. It’s not another kind of account — it’s a lightweight identity record for an external user, and passingactor on an input names who actually spoke:
provider_tenant_id and provider_user_id match an existing record. You can also pass an actor when resolving an interaction or stopping current work.
Actors belong to a project and can be listed, fetched, or created through the API. Omit actor when the request is authenticated as an Omnara user; their account already provides the attribution.
Full schemas and playground: List project actors · Upsert an external actor · Get a project actor.
Next
Streaming events
Watch your input get admitted and answered, live
Approvals & questions
Resolve the prompts that pause an agent