@effect/ai-openai 0.28.1 → 0.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/Generated.js
CHANGED
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
* Currently supported values are `low`, `medium`, and `high`. Reducing
|
|
133
133
|
* reasoning effort can result in faster responses and fewer tokens used
|
|
134
134
|
* on reasoning in a response.
|
|
135
|
-
*/exports.AssistantSupportedModels=AssistantSupportedModels;class ReasoningEffort extends/*#__PURE__*/S.Literal("low","medium","high"){}exports.ReasoningEffort=ReasoningEffort;class CreateAssistantRequest extends/*#__PURE__*/S.Class("CreateAssistantRequest")({/**
|
|
135
|
+
*/exports.AssistantSupportedModels=AssistantSupportedModels;class ReasoningEffort extends/*#__PURE__*/S.Literal("minimal","low","medium","high"){}exports.ReasoningEffort=ReasoningEffort;class CreateAssistantRequest extends/*#__PURE__*/S.Class("CreateAssistantRequest")({/**
|
|
136
136
|
* ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models) for descriptions of them.
|
|
137
137
|
*/"model":/*#__PURE__*/S.Union(S.String,AssistantSupportedModels),/**
|
|
138
138
|
* The name of the assistant. The maximum length is 256 characters.
|
|
@@ -777,6 +777,10 @@
|
|
|
777
777
|
* characteristics, and price points. Refer to the [model guide](/docs/models)
|
|
778
778
|
* to browse and compare available models.
|
|
779
779
|
*/"model":ModelIdsShared,"modalities":/*#__PURE__*/S.optionalWith(ResponseModalities,{nullable:true}),"reasoning_effort":/*#__PURE__*/S.optionalWith(ReasoningEffort,{nullable:true,default:()=>"medium"}),/**
|
|
780
|
+
* Constrains the verbosity of the model's response. Lower values will result
|
|
781
|
+
* in more concise responseswhile higher values will result in more verbose
|
|
782
|
+
* responses.
|
|
783
|
+
*/"verbosity":/*#__PURE__*/S.optionalWith(/*#__PURE__*/S.Literal("low","medium","high"),{nullable:true,default:()=>"medium"}),/**
|
|
780
784
|
* An upper bound for the number of tokens that can be generated for a completion, including visible output tokens and [reasoning tokens](/docs/guides/reasoning).
|
|
781
785
|
*/"max_completion_tokens":/*#__PURE__*/S.optionalWith(S.Int,{nullable:true}),/**
|
|
782
786
|
* Number between -2.0 and 2.0. Positive values penalize new tokens based on
|