AxFieldProcessorProcess
type AxFieldProcessorProcess = (value: AxFieldValue, context?: Readonly<{
done?: boolean;
sessionId?: string;
values?: AxGenOut;
}>) => unknown | Promise<unknown>;
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/dsp/fieldProcessor.ts#L7
Parameters
Parameter | Type |
---|---|
value | AxFieldValue |
context? | Readonly <{ done? : boolean ; sessionId? : string ; values? : AxGenOut ; }> |
Returns
unknown
| Promise
<unknown
>