Skip to content

remote / Exports / IStreamExecutionRequest

Interface: IStreamExecutionRequest

Request for executing a streaming chat completion through an executor

Hierarchy

Table of contents

Properties

Properties

messages

messages: TUniversalMessage[]

Array of messages in the conversation

Inherited from

IChatExecutionRequest.messages

Defined in

agents/dist/node/index.d.ts:2675


options

Optional options: IChatOptions

Chat options including model, temperature, etc.

Inherited from

IChatExecutionRequest.options

Defined in

agents/dist/node/index.d.ts:2677


tools

Optional tools: IToolSchema[]

Available tools for the AI to use

Inherited from

IChatExecutionRequest.tools

Defined in

agents/dist/node/index.d.ts:2679


provider

provider: string

Target AI provider (e.g., 'openai', 'anthropic', 'google')

Inherited from

IChatExecutionRequest.provider

Defined in

agents/dist/node/index.d.ts:2681


model

model: string

Specific model to use

Inherited from

IChatExecutionRequest.model

Defined in

agents/dist/node/index.d.ts:2683


stream

stream: true

Indicates this is a streaming request

Defined in

agents/dist/node/index.d.ts:2690

Released under the MIT License.