@effect/ai-openai-compat 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.
package/dist/OpenAiClient.d.ts
CHANGED
|
@@ -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
|
|
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.
|
|
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.
|
|
48
|
+
"effect": "^4.0.0-beta.74"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"effect": "^4.0.0-beta.
|
|
51
|
+
"effect": "^4.0.0-beta.74"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"codegen": "effect-utils codegen",
|
package/src/OpenAiClient.ts
CHANGED
|
@@ -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
|
|
107
|
+
* @category options
|
|
108
108
|
* @since 4.0.0
|
|
109
109
|
*/
|
|
110
110
|
export type Options = {
|
package/src/OpenAiTelemetry.ts
CHANGED
|
@@ -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
|
|
139
|
+
* @category options
|
|
140
140
|
* @since 4.0.0
|
|
141
141
|
*/
|
|
142
142
|
export type OpenAiTelemetryAttributeOptions = Telemetry.GenAITelemetryAttributeOptions & {
|