Documentation / @agentick/core / ProviderToolOptions
Interface: ProviderToolOptions ​
Defined in: core/src/types.ts:267
Base interface for provider-specific tool options. Used for tool definitions to customize how tools are presented to the provider. Each adapter can extend this interface using module augmentation to add their provider key.
Example:
typescript
declare module 'agentick' {
interface ProviderToolOptions {
openai?: OpenAIToolOptions;
}
}Indexable ​
[provider: string]: any