@arizeai/phoenix-client 5.8.0 → 5.8.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.
- package/dist/esm/__generated__/api/v1.d.ts +9 -3
- package/dist/esm/__generated__/api/v1.d.ts.map +1 -1
- package/dist/esm/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/esm/utils/formatPromptMessages.d.ts.map +1 -1
- package/dist/src/__generated__/api/v1.d.ts +9 -3
- package/dist/src/__generated__/api/v1.d.ts.map +1 -1
- package/dist/src/utils/formatPromptMessages.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
- package/src/__generated__/api/v1.ts +9 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arizeai/phoenix-client",
|
|
3
|
-
"version": "5.8.
|
|
3
|
+
"version": "5.8.2",
|
|
4
4
|
"description": "A client for the Phoenix API",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -75,18 +75,18 @@
|
|
|
75
75
|
"tsx": "^4.19.3",
|
|
76
76
|
"typescript": "^5.8.2",
|
|
77
77
|
"vitest": "^4.0.10",
|
|
78
|
-
"@arizeai/phoenix-evals": "0.
|
|
78
|
+
"@arizeai/phoenix-evals": "0.9.0"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
81
|
"@arizeai/openinference-semantic-conventions": "^1.1.0",
|
|
82
|
-
"@arizeai/openinference-vercel": "^2.
|
|
82
|
+
"@arizeai/openinference-vercel": "^2.7.0",
|
|
83
83
|
"async": "^3.2.6",
|
|
84
84
|
"openapi-fetch": "^0.12.5",
|
|
85
85
|
"tiny-invariant": "^1.3.3",
|
|
86
86
|
"zod": "^3.24.3",
|
|
87
87
|
"zod-to-json-schema": "^3.24.3",
|
|
88
|
-
"@arizeai/phoenix-
|
|
89
|
-
"@arizeai/phoenix-
|
|
88
|
+
"@arizeai/phoenix-otel": "0.4.1",
|
|
89
|
+
"@arizeai/phoenix-config": "0.1.0"
|
|
90
90
|
},
|
|
91
91
|
"engines": {
|
|
92
92
|
"node": ">=18"
|
|
@@ -2543,13 +2543,13 @@ export interface components {
|
|
|
2543
2543
|
/**
|
|
2544
2544
|
* Start Time
|
|
2545
2545
|
* Format: date-time
|
|
2546
|
-
* @description Start time of the span
|
|
2546
|
+
* @description Start time of the span (must be timezone-aware)
|
|
2547
2547
|
*/
|
|
2548
2548
|
start_time: string;
|
|
2549
2549
|
/**
|
|
2550
2550
|
* End Time
|
|
2551
2551
|
* Format: date-time
|
|
2552
|
-
* @description End time of the span
|
|
2552
|
+
* @description End time of the span (must be timezone-aware)
|
|
2553
2553
|
*/
|
|
2554
2554
|
end_time: string;
|
|
2555
2555
|
/**
|
|
@@ -2732,7 +2732,7 @@ export interface components {
|
|
|
2732
2732
|
/**
|
|
2733
2733
|
* Timestamp
|
|
2734
2734
|
* Format: date-time
|
|
2735
|
-
* @description When the event occurred
|
|
2735
|
+
* @description When the event occurred (must be timezone-aware)
|
|
2736
2736
|
*/
|
|
2737
2737
|
timestamp: string;
|
|
2738
2738
|
/**
|
|
@@ -3000,6 +3000,10 @@ export interface components {
|
|
|
3000
3000
|
msg: string;
|
|
3001
3001
|
/** Error Type */
|
|
3002
3002
|
type: string;
|
|
3003
|
+
/** Input */
|
|
3004
|
+
input?: unknown;
|
|
3005
|
+
/** Context */
|
|
3006
|
+
ctx?: Record<string, unknown>;
|
|
3003
3007
|
};
|
|
3004
3008
|
};
|
|
3005
3009
|
responses: never;
|
|
@@ -5379,6 +5383,8 @@ export interface operations {
|
|
|
5379
5383
|
limit?: number;
|
|
5380
5384
|
/** @description Include experiment projects in the response. Experiment projects are created from running experiments. */
|
|
5381
5385
|
include_experiment_projects?: boolean;
|
|
5386
|
+
/** @description Include dataset evaluator projects in the response. Dataset evaluator projects are created when running experiments with persisted evaluators. */
|
|
5387
|
+
include_dataset_evaluator_projects?: boolean;
|
|
5382
5388
|
};
|
|
5383
5389
|
header?: never;
|
|
5384
5390
|
path?: never;
|