Skip to content

agents / Exports / ExecutorAwareProviderConfig

Interface: ExecutorAwareProviderConfig

Enhanced provider configuration that supports executor injection

Indexable

▪ [key: string]: string | number | boolean | ExecutorInterface | undefined

Table of contents

Properties

Properties

apiKey

Optional apiKey: string

Defined in

packages/agents/src/abstracts/base-ai-provider.ts:44


baseUrl

Optional baseUrl: string

Defined in

packages/agents/src/abstracts/base-ai-provider.ts:45


timeout

Optional timeout: number

Defined in

packages/agents/src/abstracts/base-ai-provider.ts:46


executor

Optional executor: ExecutorInterface

Optional executor for handling AI requests When provided, the provider will delegate all chat operations to this executor instead of making direct API calls. This enables remote execution capabilities.

Defined in

packages/agents/src/abstracts/base-ai-provider.ts:52

Released under the MIT License.