AxAIOpenAIConfig
type AxAIOpenAIConfig<TModel, TEmbedModel> = Omit<AxModelConfig, "topK"> & object;
Defined in: https://github.com/ax-llm/ax/blob/781623e58befc00a555cf73ccbac598a72bb700c/src/ax/ai/openai/chat_types.ts#L80
Type declaration
| Name | Type | Description |
|---|
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? | AxServiceTier | "default" | Portable values plus the legacy OpenAI default alias. |
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 |