Skip to main content
You can interact with your published agents using HTTP API or use the AI SDK UI for a seamless integration.

Steps for integrating Agent Studio

1

Prepare your agent

Ensure that your agent is configured and published in the Algolia dashboard. To learn more, see Get started with the Agent Studio dashboard.
2

Get your agent ID

On the Agents page in the Agent Studio’s dashboard, find your published agent’s ID.
3

Choose how you want to integrate Agent Studio

  • HTTP API: directly interact with your agent using HTTP requests.
  • InstantSearch: use the InstantSearch.js or React InstantSearch libraries to integrate search capabilities alongside your agent.
  • AI SDK UI: use the React-based SDK for a ready-to-use conversational UI.

API integration

Interact with your GenAI agent directly using the Agent Studio API. Example curl request:
Command line
And the response would look like the following:
JSON
To continue the conversation, include the previous messages in the request:
JSON
To override Algolia search behavior for a single request, include algolia.searchParameters in the request body. For supported fields and examples, see Algolia Search tool. For the request schema for POST /agent-studio/1/agents/{agentId}/completions, see the Agent Studio API reference.

Enable conversation persistence

To automatically save conversations server-side, include both a conversation ID and message IDs in your request:
Command line
Both fields are required:
  • id: conversation identifier (prefix with alg_cnv_ for consistency)
  • messages[].id: unique ID for each message (prefix with alg_msg_)
You can then retrieve the conversation history using the conversations API. For more information, see Conversations.
  • Replace {{ALGOLIA_APPLICATION_ID}} with your Algolia .
  • Replace {{agentId}} with your published agent ID.
  • Use your application’s search-only API key for authentication.
  • The endpoint supports streaming responses and is compatible with ai-sdk v4 and v5.
  • For streaming responses, set stream=true in the query parameters.
  • For production, secure your API keys and restrict usage as needed.

InstantSearch integration

Agent Studio is compatible with InstantSearch.js and React InstantSearch. The InstantSearch integration only supports ai-sdk v5. The benefits of using InstantSearch are:
  • Provides an out-of-the-box chat interface with multiple customization options.
  • Integrates search results alongside your agent’s responses.
  • Handles custom tools with minimal setup.
For more information, see Get started with React InstantSearch and the examples on GitHub.

Examples

The <Chat> widget renders the chat panel but doesn’t render a way to open it. Pair it with the <ChatTrigger> widget to add a floating button that opens the chat.

Chat trigger

The <Chat> widget renders the chat panel but, on its own, provides no way for users to open it. Add one of the following entry points to the same <InstantSearch> instance:
  • The <ChatTrigger> widget, which renders a floating button that opens the chat overlay.
  • AI mode on a SearchBox or autocomplete, which opens the chat with the user’s query.
  • An inline layout, which is always visible and doesn’t need a trigger.
If the chat has none of these, the <Chat> widget logs a development warning. To silence it (for example, when you open the chat programmatically), set disableTriggerValidation to true on the <Chat> widget. By default, the trigger is a floating button anchored to the bottom-right of the viewport. Set floating to false to render an inline button that flows with surrounding content.

Rendering search results

If your agent uses a search tool, you must define item templates or components to control how search results appear in the chat interface. Templates are required for search results. They let you display product information, images, or other data in a format that fits your application.
The itemComponent (React) or templates.item (JavaScript) template renders each search result item with custom HTML and styling. If your agent uses a search tool, you must define this template to display search results correctly in the chat interface.

Insights events for agentic results

When you use the InstantSearch Chat widget with events collection enabled, InstantSearch attributes events from agent-rendered results automatically. This includes results rendered by the built-in Agent Studio search and display-results tools, and events sent with the sendEvent function passed to custom tool layouts. Agentic results use an agentic queryID. Instead of using the Search API queryID from one underlying search request, InstantSearch attributes the event to the assistant message that presented the results:
This keeps all view, click, and conversion events from the same assistant message tied to the same agentic result set. If you customize a tool layout, use the provided sendEvent function instead of calling the Insights API directly. InstantSearch adds the agentic queryID, agentId, and toolCallId for you.
Use this pattern when the event is caused by a result shown in an assistant message. For events from a regular search results page, continue using the regular search queryID.

Tools

InstantSearch Chat widgets let you integrate tools in your agent’s responses. Once a tool has been added to your agent in the dashboard, you can customize how it’s rendered with InstantSearch. For a complete guide to configuring tools in Agent Studio, see Tools for Agent Studio.
The tools prop is an object where the keys are the tool names defined in your agent configuration. Each tool includes a layoutComponent (React) or templates.layout (JavaScript) to customize how tool calls appear in the chat interface, and an optional onToolCall handler to run custom logic when the tool is invoked. For the full list of available props (including applyFilters, sendEvent, onClose, and streamInput), see the Chat widget reference for React or JavaScript.

Hidden context

Use the context prop (React) or context option (JavaScript) on the chat widget to send extra metadata with each user message—for example, the current page, locale, or session segment. The widget serializes the value as JSON and adds it to the user message as a hidden text part of the form <context>{"key":"value"}</context>. Users don’t see it in the chat UI, but the agent does. context can be a static object or a function that returns an object at send time. Use a function when the context depends on the current state of the page.
The widget sends context to the agent in plain text. Don’t put secrets, access tokens, or personally identifiable information you don’t intend to share with the model in this field.
For more details, see the Chat widget reference for React or JavaScript.

Follow-up prompt suggestions

Follow-up prompt suggestions can be enabled in InstantSearch by enabling the suggestions feature in the Agent Studio dashboard or API. When enabled, the Chat widgets automatically handle and display suggestions after each agent response. You can customize the suggestions layout using the suggestions component or template.

Prompt suggestions

To display AI-generated prompt suggestions outside the chat, for example on a search results or product detail page, use the PromptSuggestions widget. It generates prompts from the current search context and hands them off to the chat widget when clicked. For more details, see the PromptSuggestions widget reference for React or JavaScript.

Complete examples

AI SDK UI integration

The Agent Studio is compatible with AI SDK UI, a React-based UI integration for building conversational interfaces. Agent Studio supports both ai-sdk v5 and v4. AI SDK UI isn’t required to use Agent Studio, but it makes the integration process much easier by handling common tasks like UI rendering and state management. The benefits of using the AI SDK UI are:
  • Abstractions over low-level HTTP requests
  • Built-in error handling, retries, and extensibility using middleware and plugins
  • Fast setup for conversational user interfaces
It also allows for advanced use cases, such as:
  • Custom tool handling
  • UI state control
For more information, see the AI SDK documentation.

Installation

Command line

Example React integration

React

Send agentic Insights events manually

If you don’t use InstantSearch Chat, use the ID of the assistant message that rendered the results. With Agent Studio, this is the id from the assistant message returned by the completion response. Store that assistant message, including its id, in your conversation state so later clicks and conversions can reuse the same queryID. Build the event queryID from the assistant message ID:
Positions should match the item’s visible position in the assistant message, starting at 1.
If the user converts later, reuse the same agentic queryID from the assistant message that showed the result.
JavaScript
Last modified on August 6, 2026