AxAgentCompletionProtocol
type AxAgentCompletionProtocol = Readonly<{
askClarification: (...args: unknown[]) => never;
failed: (message: string) => Promise<void>;
final: (...args: unknown[]) => never;
guideAgent: (guidance: string) => never;
success: (message: string) => Promise<void>;
}>;Defined in: https://github.com/ax-llm/ax/blob/5b28f9093bb70863b59459bb6df5062d005bce41/src/ax/ai/types.ts#L270