Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
API clients
Create new feedback entry.
search
// Initialize the client var client = new AgentStudioClient( new AgentStudioConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY") ); // Call the API var response = await client.CreateFeedbackAsync( new FeedbackCreationRequest { MessageId = "msg-abc123", AgentId = "76710f1b-8231-42e5-b0d1-f43aac618e15", Vote = Enum.Parse<VoteEnum>("1"), } ); // print the response Console.WriteLine(response);
Was this page helpful?