featherbit UI
    Preparing search index...

    Interface TurnDeps

    interface TurnDeps {
        hooks: TurnHooks;
        now?: () => number;
        provider: Provider;
        redact?: (text: string) => string;
        signal: AbortSignal;
        tools: ToolRunner | null;
    }
    Index
    hooks: TurnHooks
    now?: () => number
    provider: Provider
    redact?: (text: string) => string

    Applied to tool result/error text before it is stored or replayed (default: identity).

    signal: AbortSignal
    tools: ToolRunner | null