Skip to main content

PromptEvaluatorsClient

adaline.prompts.evaluators manages the evaluators attached to a prompt — LLM-as-a-judge graders, JavaScript checks, text matchers, cost, latency, and response-length guards. Evaluators are always scoped to a prompt; there is no workspace-level evaluators collection. Every method is async.

Access

The class is also exported directly:
Types from adaline_api:
Evaluator types at a glance:

list()

List evaluators attached to a prompt (paginated).

Example


create()

Attach a new evaluator to a prompt.

Example — LLM-as-a-judge


get()

Fetch a single evaluator by ID.

update()

Update an evaluator’s title, settings, or threshold.

Example


delete()

Permanently delete an evaluator.

See Also