agents / Exports / ExecutorAwareProviderConfig
Interface: ExecutorAwareProviderConfig
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/agents/src/abstracts/abstract-ai-provider.ts:57
baseUrl
• Optional baseUrl: string
Defined in
packages/agents/src/abstracts/abstract-ai-provider.ts:58
timeout
• Optional timeout: number
Defined in
packages/agents/src/abstracts/abstract-ai-provider.ts:59
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.