glrs
    Preparing search index...

    Type Alias Verdict

    type Verdict = {
        before_agent_start:
            | string
            | false
            | { prompt?: string; systemPrompt?: string };
        before_provider_request: {
            body?: unknown;
            headers?: Record<string, string>;
        };
        before_request: string;
        context: readonly ModelMessage[];
        input: | string
        | false
        | { streamingBehavior?: "steer"
        | "follow-up"; text: string };
        session_before_compact: { instruction?: string; summary?: string } | false;
        session_before_fork: false;
        session_before_switch: false;
        tool_call: string | false;
        tool_end: string;
        user_bash: { command: string } | false;
    }
    Index
    before_agent_start: string | false | { prompt?: string; systemPrompt?: string }
    before_provider_request: { body?: unknown; headers?: Record<string, string> }
    before_request: string
    context: readonly ModelMessage[]
    input:
        | string
        | false
        | { streamingBehavior?: "steer"
        | "follow-up"; text: string }
    session_before_compact: { instruction?: string; summary?: string } | false
    session_before_fork: false
    session_before_switch: false
    tool_call: string | false
    tool_end: string
    user_bash: { command: string } | false