Skip to content

Sessions

Example showing how to create and manage chat sessions.

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

1
2
3
4
5
6
7
8
// List all chat sessions on the Julep platform.

using var client = new JulepClient(apiKey);

var response = await client.SessionsRouteListAsync(
    limit: 10,
    offset: 0,
    metadataFilter: new object());