Skip to content

agents / Exports / ExecutionServiceInterface

Interface: ExecutionServiceInterface

Interface for execution service operations

Table of contents

Methods

Methods

execute

execute(input, context, options?): Promise<string>

Execute complete agent pipeline

Parameters

NameType
inputstring
contextConversationContext
options?ExecutionServiceOptions

Returns

Promise<string>

Defined in

packages/agents/src/interfaces/service.ts:231


executeStream

executeStream(input, context, options?): AsyncGenerator<string, void, never>

Execute streaming agent pipeline

Parameters

NameType
inputstring
contextConversationContext
options?ExecutionServiceOptions

Returns

AsyncGenerator<string, void, never>

Defined in

packages/agents/src/interfaces/service.ts:240

Released under the MIT License.