Circle V2 API Docs
    Preparing search index...

    Type Alias ChartReviewSettings

    Settings consumed by the chart-review v2 orchestrator. The trpc handler resolves these from LaunchDarkly (or any other source) and passes them in; the orchestrator never imports an LD SDK or reads process.env.

    The shape is intentionally narrow — it carries only the fields the AgentQuestionRunner and the ChatOpenAI constructor actually consume. The v1 chartReviewSettingOverrides flag in LaunchDarkly carries additional fields; map only what's needed here.

    type ChartReviewSettings = {
        enableNoDocsBailout: boolean;
        enableRunContextHoisting?: boolean;
        enableSummaryTableShortcut?: boolean;
        maxTokens: number;
        useFullEmrDocuments: boolean;
    }
    Index

    Properties

    enableNoDocsBailout: boolean
    enableRunContextHoisting?: boolean
    enableSummaryTableShortcut?: boolean

    When true, metadata-focused questions are first attempted with the one-shot SummaryTableQuestionRunner before the full agent pipeline. Optional: the LaunchDarkly settings JSON may omit it, so every consumer defaults it to false (?? false) — matching the job schema, which also treats it as optional.

    maxTokens: number
    useFullEmrDocuments: boolean