@effect/ai-openai-compat 4.0.0-beta.72 → 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.
@@ -59,7 +59,7 @@ export declare class OpenAiClient extends OpenAiClient_base {
59
59
  /**
60
60
  * Configuration options used to construct an OpenAI-compatible client.
61
61
  *
62
- * @category models
62
+ * @category options
63
63
  * @since 4.0.0
64
64
  */
65
65
  export type Options = {
@@ -88,7 +88,7 @@ export type WellKnownServiceTier = "auto" | "default";
88
88
  * Options accepted by `addGenAIAnnotations`, combining standard GenAI telemetry
89
89
  * attributes with optional OpenAI-compatible 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-compat",
3
- "version": "4.0.0-beta.72",
3
+ "version": "4.0.0-beta.74",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "An OpenAI compat integration for Effect",
@@ -45,10 +45,10 @@
45
45
  "provenance": true
46
46
  },
47
47
  "devDependencies": {
48
- "effect": "^4.0.0-beta.72"
48
+ "effect": "^4.0.0-beta.74"
49
49
  },
50
50
  "peerDependencies": {
51
- "effect": "^4.0.0-beta.72"
51
+ "effect": "^4.0.0-beta.74"
52
52
  },
53
53
  "scripts": {
54
54
  "codegen": "effect-utils codegen",
@@ -104,7 +104,7 @@ export class OpenAiClient extends Context.Service<OpenAiClient, Service>()(
104
104
  /**
105
105
  * Configuration options used to construct an OpenAI-compatible client.
106
106
  *
107
- * @category models
107
+ * @category options
108
108
  * @since 4.0.0
109
109
  */
110
110
  export type Options = {
@@ -136,7 +136,7 @@ export type WellKnownServiceTier = "auto" | "default"
136
136
  * Options accepted by `addGenAIAnnotations`, combining standard GenAI telemetry
137
137
  * attributes with optional OpenAI-compatible request and response attributes.
138
138
  *
139
- * @category models
139
+ * @category options
140
140
  * @since 4.0.0
141
141
  */
142
142
  export type OpenAiTelemetryAttributeOptions = Telemetry.GenAITelemetryAttributeOptions & {