Documentation Index
Fetch the complete documentation index at: https://docs.galileo.ai/llms.txt
Use this file to discover all available pages before exploring further.
Scorers
get_scorer_version
name(str): Name of the scorerversion(int): Version of the scorer.
Scorer response if found, otherwise None.:
list
types
list are combined with an OR condition.
For example, calling list(name="my_scorer", types=[ScorerTypes.llm, ScorerTypes.code])
will return scorers where the name is “my_scorer” AND the type is either “llm” OR “code”.
Arguments
name: Name of the scorer to filter by.types: List of scorer types to filter by. Defaults to all scorers.
A list of scorers that match the filter criteria.:
list_by_ids
scorer_ids: UUID strings of scorers to retrieve.
A list of scorers matching the given IDs.:
list_by_labels
labels: Label values to search for.strict: When False (default), also matches by scorer name as a fallback for custom scorers that have no label set.
A list of scorers matching the label (or name) criteria.:
ScorerSettings
create
project_id: ID of the projectrun_id: ID of the runscorers: List of scorer configurations
Upserted scorer settings.: