Skip to main content
This is a beta feature according to Algolia’s Terms of Service (“Beta Services”).
The Agent Studio API client is part of the Algolia.Search package. To install this package, run:
Command line
dotnet add package Algolia.Search
To use the Agent Studio client, import these namespaces:
C#
using Algolia.Search.Clients;
using Algolia.Search.Http;
using Algolia.Search.Models.AgentStudio;
To create an instance of the client:
C#
var client = new AgentStudioClient(
  new AgentStudioConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY")
);

Streaming

The Agent Studio API client supports streaming completions in JavaScript and Python. Other languages only support non-streaming completions for now. For more information, see Create Completion.

Helper methods

The Agent Studio API client includes helper methods to simplify common tasks.
Not all helper methods are available for all API clients and their implementation might differ.
Last modified on June 12, 2026