@effect/ai-openai 4.0.0-beta.73 → 4.0.0-beta.74

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.
@@ -62,7 +62,7 @@ export declare class OpenAiClient extends OpenAiClient_base {
62
62
  /**
63
63
  * Options for configuring the OpenAI client.
64
64
  *
65
- * @category models
65
+ * @category options
66
66
  * @since 4.0.0
67
67
  */
68
68
  export type Options = {
@@ -18,7 +18,7 @@ export declare class OpenAiClientGenerated extends OpenAiClientGenerated_base {
18
18
  * Options for configuring the generated OpenAI client.
19
19
  *
20
20
  * @since 4.0.0
21
- * @category models
21
+ * @category options
22
22
  */
23
23
  export type Options = {
24
24
  /**
@@ -780,7 +780,7 @@ export declare const CreateResponse: Schema.Struct<{
780
780
  /**
781
781
  * Request options used to create an OpenAI Responses API response.
782
782
  *
783
- * @category models
783
+ * @category options
784
784
  * @since 4.0.0
785
785
  */
786
786
  export type CreateResponse = typeof CreateResponse.Type;
@@ -88,7 +88,7 @@ export type WellKnownServiceTier = "auto" | "default";
88
88
  * Options accepted by `addGenAIAnnotations`, combining standard GenAI
89
89
  * telemetry attributes with optional OpenAI request and response attributes.
90
90
  *
91
- * @category models
91
+ * @category options
92
92
  * @since 4.0.0
93
93
  */
94
94
  export type OpenAiTelemetryAttributeOptions = Telemetry.GenAITelemetryAttributeOptions & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect/ai-openai",
3
- "version": "4.0.0-beta.73",
3
+ "version": "4.0.0-beta.74",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "An OpenAI provider integration for Effect AI SDK",
@@ -43,10 +43,10 @@
43
43
  "provenance": true
44
44
  },
45
45
  "devDependencies": {
46
- "effect": "^4.0.0-beta.73"
46
+ "effect": "^4.0.0-beta.74"
47
47
  },
48
48
  "peerDependencies": {
49
- "effect": "^4.0.0-beta.73"
49
+ "effect": "^4.0.0-beta.74"
50
50
  },
51
51
  "scripts": {
52
52
  "codegen": "effect-utils codegen",
@@ -143,7 +143,7 @@ export class OpenAiClient extends Context.Service<OpenAiClient, Service>()(
143
143
  /**
144
144
  * Options for configuring the OpenAI client.
145
145
  *
146
- * @category models
146
+ * @category options
147
147
  * @since 4.0.0
148
148
  */
149
149
  export type Options = {
@@ -38,7 +38,7 @@ export class OpenAiClientGenerated extends Context.Service<OpenAiClientGenerated
38
38
  * Options for configuring the generated OpenAI client.
39
39
  *
40
40
  * @since 4.0.0
41
- * @category models
41
+ * @category options
42
42
  */
43
43
  export type Options = {
44
44
  /**
@@ -712,7 +712,7 @@ export const CreateResponse = Schema.Struct({
712
712
  /**
713
713
  * Request options used to create an OpenAI Responses API response.
714
714
  *
715
- * @category models
715
+ * @category options
716
716
  * @since 4.0.0
717
717
  */
718
718
  export type CreateResponse = typeof CreateResponse.Type
@@ -127,7 +127,7 @@ export type WellKnownServiceTier = "auto" | "default"
127
127
  * Options accepted by `addGenAIAnnotations`, combining standard GenAI
128
128
  * telemetry attributes with optional OpenAI request and response attributes.
129
129
  *
130
- * @category models
130
+ * @category options
131
131
  * @since 4.0.0
132
132
  */
133
133
  export type OpenAiTelemetryAttributeOptions = Telemetry.GenAITelemetryAttributeOptions & {