UNPKG

axiom

Version:

Axiom AI SDK provides an API to wrap your AI calls with observability instrumentation.

13 lines (11 loc) 247 B
type Score = { name: string; score: number | null; metadata?: Record<string, any>; }; type Scorer = (args: { input?: any; output: any; expected?: any; }) => Score | Promise<Score>; export type { Score as S, Scorer as a };