/** * JSON Schema definitions for OpenAI Structured Outputs. * Used by Layers 2 (Inquisitor) and 4 (Orchestrator) to guarantee * schema compliance at the provider level, eliminating regex fallbacks. */ import { StructuredOutputSchema } from "../agents/web/openai-strategy-agent"; /** * Schema for Layer 2 (Inquisitor) output. * Guarantees the LLM returns validatedFragments in the exact structure * expected by InquisitorOutputParser. */ export declare const INQUISITOR_SCHEMA: StructuredOutputSchema; /** * Schema for Layer 4 (Orchestrator) output. * Guarantees the LLM returns a verdict in the exact structure * expected by OrchestratorOutputParser. */ export declare const ORCHESTRATOR_SCHEMA: StructuredOutputSchema; //# sourceMappingURL=schemas.d.ts.map