Skip to content

Scores

List scores for evaluating LLM outputs in Langfuse.

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

1
2
3
4
5
using var client = new LangfuseClient(apiKey);

// List all scores in your project with pagination.
var response = await client.Scores.ScoresGetManyAsync(
    limit: 10);