Functions

applyOutputSchema

Function: applyOutputSchema()

applyOutputSchema<T>(raw, parser): T

Defined in: src/core/outputSchema.ts:145

Parse + validate a raw string answer against a parser. Used by agent.parseOutput() / agent.runTyped(). Centralized here so both call sites share identical error-mapping behavior.

Two-stage error reporting:

  • JSON parse failure → stage: 'json-parse' (LLM emitted prose or malformed JSON)
  • Schema validation failure → stage: 'schema-validate' (JSON was valid but didn't match the contracted shape)

Type Parameters

T

T

Parameters

raw

string

parser

OutputSchemaParser<T>

Returns

T

On this page