agent-core / Exports / IProviderSpecificOptions
Interface: IProviderSpecificOptions
Provider-specific configuration options
Hierarchy
IProviderSpecificOptions
Table of contents
Properties
Properties
openai
• Optional openai: Object
OpenAI specific options
Type declaration
| Name | Type |
|---|---|
organization? | string |
user? | string |
stop? | string | string[] |
presencePenalty? | number |
frequencyPenalty? | number |
logitBias? | Record<string, number> |
topP? | number |
n? | number |
stream? | boolean |
suffix? | string |
echo? | boolean |
bestOf? | number |
logprobs? | number |
Defined in
packages/agent-core/src/interfaces/provider.ts:105
anthropic
• Optional anthropic: Object
Anthropic specific options
Type declaration
| Name | Type |
|---|---|
stopSequences? | string[] |
topP? | number |
topK? | number |
metadata? | { userId?: string } |
metadata.userId? | string |
Defined in
packages/agent-core/src/interfaces/provider.ts:122
google
• Optional google: Object
Google specific options
Type declaration
| Name | Type |
|---|---|
candidateCount? | number |
stopSequences? | string[] |
safetySettings? | { category: string ; threshold: string }[] |
responseModalities? | ("TEXT" | "IMAGE")[] |
topP? | number |
topK? | number |