Basic Usage
Start a conversation with a chat agent. The response includes aconversation_id you can use to continue the conversation.
Continuing a Conversation
Pass theconversation_id from a previous response to continue the same conversation. Reminix automatically manages the message history.
Parameters
Name of the agent.
OpenAI-compatible message format. Each message is an object with
role and content fields.Continue an existing conversation. Omit to start a new one.
Execution context including identity and metadata.
Message Format
Messages follow the OpenAI-compatible format withrole and content fields.
The
system role is optional and typically set by the agent configuration. You can include it to override or augment the agent’s system prompt.Response
The agent’s response text.
The conversation ID for follow-up messages. Store this to continue the conversation.
With Streaming
Passstream: true to receive the response incrementally as the agent generates it.
Next steps
invoke()
Stateless one-shot calls when you don’t need history.
Conversations
How conversation IDs and identity scoping work.
Error Handling
Catch typed errors and add retries.
Streaming
Event types and SSE format reference.