agent-core / Exports / IExecutorAwareProviderConfig
Interface: IExecutorAwareProviderConfig
Enhanced provider configuration that supports executor injection
Indexable
▪ [key: string]: string | number | boolean | IExecutor | undefined
Table of contents
Properties
Properties
apiKey
• Optional apiKey: string
Defined in
packages/agent-core/src/abstracts/abstract-ai-provider.ts:42
baseUrl
• Optional baseUrl: string
Defined in
packages/agent-core/src/abstracts/abstract-ai-provider.ts:43
timeout
• Optional timeout: number
Defined in
packages/agent-core/src/abstracts/abstract-ai-provider.ts:44
executor
• Optional executor: IExecutor
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/agent-core/src/abstracts/abstract-ai-provider.ts:50