AxAIOpenAIConfig
type AxAIOpenAIConfig<TModel, TEmbedModel> = Omit<AxModelConfig, "topK"> & object;
Defined in: https://github.com/ax-llm/ax/blob/5b28f9093bb70863b59459bb6df5062d005bce41/src/ax/ai/openai/chat_types.ts#L75
Type declaration
| Name | Type |
|---|
bestOf? | number |
dimensions? | number |
echo? | boolean |
embedModel? | TEmbedModel |
logitBias? | Map<string, number> |
logprobs? | number |
model | TModel |
reasoningEffort? | "none" | "minimal" | "low" | "medium" | "high" | "xhigh" |
responseFormat? | "json_object" |
serviceTier? | "auto" | "default" | "flex" |
stop? | string[] |
store? | boolean |
suffix? | string | null |
user? | string |
webSearchOptions? | { searchContextSize?: "low" | "medium" | "high"; userLocation?: | { approximate: { city?: string; country?: string; region?: string; timezone?: string; type: "approximate"; }; } | null; } |
Type Parameters
| Type Parameter |
|---|
TModel |
TEmbedModel |