Agents
Interact with deployed AI agents programmatically. Agents are custom AI assistants built in Jabrod with tools, knowledge bases, and custom system prompts.Chat with an Agent
Send a message to a deployed agent and get a response:Multi-turn Conversations
Pass conversation history for context-aware follow-ups:Fluent Builder API
Use the builder pattern for cleaner code:Response Object
The agent chat response includes:| Field | Type | Description |
|---|---|---|
message | string | Agentโs response text |
model | string | Model used for generation |
ragUsed | boolean | Whether knowledge base context was used |
ragSources | array | Source chunks from the knowledge base |
toolsUsed | array | Tools the agent invoked |
toolsAvailable | string[] | Tools configured for the agent |
