@effect/ai-openai 0.28.1 → 0.28.2

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.
@@ -337,7 +337,7 @@ export class AssistantSupportedModels extends /*#__PURE__*/S.Literal("gpt-4.1",
337
337
  * reasoning effort can result in faster responses and fewer tokens used
338
338
  * on reasoning in a response.
339
339
  */
340
- export class ReasoningEffort extends /*#__PURE__*/S.Literal("low", "medium", "high") {}
340
+ export class ReasoningEffort extends /*#__PURE__*/S.Literal("minimal", "low", "medium", "high") {}
341
341
  export class CreateAssistantRequest extends /*#__PURE__*/S.Class("CreateAssistantRequest")({
342
342
  /**
343
343
  * 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.
@@ -1968,6 +1968,15 @@ export class CreateChatCompletionRequest extends /*#__PURE__*/S.Class("CreateCha
1968
1968
  nullable: true,
1969
1969
  default: () => "medium"
1970
1970
  }),
1971
+ /**
1972
+ * Constrains the verbosity of the model's response. Lower values will result
1973
+ * in more concise responseswhile higher values will result in more verbose
1974
+ * responses.
1975
+ */
1976
+ "verbosity": /*#__PURE__*/S.optionalWith(/*#__PURE__*/S.Literal("low", "medium", "high"), {
1977
+ nullable: true,
1978
+ default: () => "medium"
1979
+ }),
1971
1980
  /**
1972
1981
  * 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).
1973
1982
  */