Skip to content

agent-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

agent-core/dist/node/index.d.ts:2111


options

Optional options: IChatOptions

Chat options including model, temperature, etc.

Inherited from

IChatExecutionRequest.options

Defined in

agent-core/dist/node/index.d.ts:2113


tools

Optional tools: IToolSchema[]

Available tools for the AI to use

Inherited from

IChatExecutionRequest.tools

Defined in

agent-core/dist/node/index.d.ts:2115


provider

provider: string

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

Inherited from

IChatExecutionRequest.provider

Defined in

agent-core/dist/node/index.d.ts:2117


model

model: string

Specific model to use

Inherited from

IChatExecutionRequest.model

Defined in

agent-core/dist/node/index.d.ts:2119


stream

stream: true

Indicates this is a streaming request

Defined in

agent-core/dist/node/index.d.ts:2126

Released under the MIT License.