Skip to content

ContextWindowOverflowError

Defined in: src/errors.ts:38

Error thrown when input exceeds the model’s context window.

This error indicates that the combined length of the input (prompt, messages, system prompt, and tool definitions) exceeds the maximum context window size supported by the model.

new ContextWindowOverflowError(message): ContextWindowOverflowError;

Defined in: src/errors.ts:44

Creates a new ContextWindowOverflowError.

ParameterTypeDescription
messagestringError message describing the context overflow

ContextWindowOverflowError

ModelError.constructor