ReasoningEvaluateSettings interface

Settings for a ReasoningEvaluateNode. The spec carries the prompt and state from the plan phase - evaluate just needs the spec, a provider, and video configuration.

Signature:

export interface ReasoningEvaluateSettings extends ProcessorNodeSettings<ReasoningEvaluateNode>

Properties

Property Type Description

analysisIntervalSecs?

number

(Optional)

contextDocuments?

string[]

(Optional) Reference documents (markdown) providing domain context for the evaluation LLM. These are included in the system instruction and cached across frames.

onAnalysis?

(analysis: AggregatedAnalysis) ⇒ void

(Optional)

onLLMResponse?

(response: LLMResponse) ⇒ void

(Optional)

onRetry?

(status: RetryStatus) ⇒ void

(Optional)

provider?

ReasoningProvider

(Optional)

spec

ReasoningSpec

videoSettings

ReasoningVideoSettings