Skip to content

Agents

List AI agents configured for your account.

This example assumes using DId; is in scope and apiKey contains your DId API key.

1
2
3
4
5
6
// List all AI agents associated with your account.
// Agents are interactive avatars powered by LLMs that can hold conversations.
using var client = new DIdClient(apiKey);

var response = await client.Agents.ListMyAgentsAsync(
    limit: 10);