Skip to content

Graphorin API reference v0.7.0


Graphorin API reference / @graphorin/agent / / VerifierResult

Type Alias: VerifierResult

ts
type VerifierResult = 
  | {
  ok: true;
}
  | {
  feedback: string;
  ok: false;
};

Defined in: packages/agent/src/types.ts:392

Outcome of one ResponseVerifier check (C3).

Stable