Skip to content

List Assistants

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

1
2
3
4
5
6
7
8
using var client = new FlowiseClient(apiKey);

var assistants = await client.Assistants.ListAssistantsAsync();

foreach (var assistant in assistants)
{
    Console.WriteLine($"Assistant: {assistant.Id} (Credential: {assistant.Credential})");
}