Reset This example assumes using Chroma; is in scope and apiKey contains your Chroma API key. 1 2 3 4 5 6 7 8 9 10 11var handler = new ResetRequestHandler(); using var httpClient = new HttpClient(handler) { BaseAddress = new Uri("http://localhost:8000"), }; using var client = new ChromaClient( apiKey: "test-token", httpClient: httpClient, disposeHttpClient: false); var result = await client.System.ResetAsync();