langsmith 0.3.10-rc.0 → 0.3.10

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/index.cjs CHANGED
@@ -8,4 +8,4 @@ Object.defineProperty(exports, "RunTree", { enumerable: true, get: function () {
8
8
  var fetch_js_1 = require("./singletons/fetch.cjs");
9
9
  Object.defineProperty(exports, "overrideFetchImplementation", { enumerable: true, get: function () { return fetch_js_1.overrideFetchImplementation; } });
10
10
  // Update using yarn bump-version
11
- exports.__version__ = "0.3.9";
11
+ exports.__version__ = "0.3.10";
package/dist/index.d.ts CHANGED
@@ -2,4 +2,4 @@ export { Client, type ClientConfig, type LangSmithTracingClientInterface, } from
2
2
  export type { Dataset, Example, TracerSession, Run, Feedback, RetrieverOutput, } from "./schemas.js";
3
3
  export { RunTree, type RunTreeConfig } from "./run_trees.js";
4
4
  export { overrideFetchImplementation } from "./singletons/fetch.js";
5
- export declare const __version__ = "0.3.9";
5
+ export declare const __version__ = "0.3.10";
package/dist/index.js CHANGED
@@ -2,4 +2,4 @@ export { Client, } from "./client.js";
2
2
  export { RunTree } from "./run_trees.js";
3
3
  export { overrideFetchImplementation } from "./singletons/fetch.js";
4
4
  // Update using yarn bump-version
5
- export const __version__ = "0.3.9";
5
+ export const __version__ = "0.3.10";
@@ -68,7 +68,7 @@ declare const test: (<I extends Record<string, any> = Record<string, any>, O ext
68
68
  } & Record<string, any>) => unknown, timeout?: number | undefined) => void) & {
69
69
  each: <I_1 extends import("../schemas.js").KVMap, O_1 extends import("../schemas.js").KVMap>(table: ({
70
70
  inputs: I_1;
71
- referenceOutputs: O_1;
71
+ referenceOutputs?: O_1 | undefined;
72
72
  } & Record<string, any>)[], config?: import("../utils/jestlike/types.js").LangSmithJestlikeWrapperConfig | undefined) => (name: string, fn: (params: {
73
73
  inputs: I_1;
74
74
  referenceOutputs?: O_1 | undefined;
@@ -80,7 +80,7 @@ declare const test: (<I extends Record<string, any> = Record<string, any>, O ext
80
80
  } & Record<string, any>) => unknown, timeout?: number | undefined) => void) & {
81
81
  each: <I_1 extends import("../schemas.js").KVMap, O_1 extends import("../schemas.js").KVMap>(table: ({
82
82
  inputs: I_1;
83
- referenceOutputs: O_1;
83
+ referenceOutputs?: O_1 | undefined;
84
84
  } & Record<string, any>)[], config?: import("../utils/jestlike/types.js").LangSmithJestlikeWrapperConfig | undefined) => (name: string, fn: (params: {
85
85
  inputs: I_1;
86
86
  referenceOutputs?: O_1 | undefined;
@@ -88,7 +88,7 @@ declare const test: (<I extends Record<string, any> = Record<string, any>, O ext
88
88
  };
89
89
  each: <I_1 extends import("../schemas.js").KVMap, O_1 extends import("../schemas.js").KVMap>(table: ({
90
90
  inputs: I_1;
91
- referenceOutputs: O_1;
91
+ referenceOutputs?: O_1 | undefined;
92
92
  } & Record<string, any>)[], config?: import("../utils/jestlike/types.js").LangSmithJestlikeWrapperConfig | undefined) => (name: string, fn: (params: {
93
93
  inputs: I_1;
94
94
  referenceOutputs?: O_1 | undefined;
@@ -103,7 +103,7 @@ declare const test: (<I extends Record<string, any> = Record<string, any>, O ext
103
103
  } & Record<string, any>) => unknown, timeout?: number | undefined) => void) & {
104
104
  each: <I extends import("../schemas.js").KVMap, O extends import("../schemas.js").KVMap>(table: ({
105
105
  inputs: I;
106
- referenceOutputs: O;
106
+ referenceOutputs?: O | undefined;
107
107
  } & Record<string, any>)[], config?: import("../utils/jestlike/types.js").LangSmithJestlikeWrapperConfig | undefined) => (name: string, fn: (params: {
108
108
  inputs: I;
109
109
  referenceOutputs?: O | undefined;
@@ -115,7 +115,7 @@ declare const test: (<I extends Record<string, any> = Record<string, any>, O ext
115
115
  } & Record<string, any>) => unknown, timeout?: number | undefined) => void) & {
116
116
  each: <I extends import("../schemas.js").KVMap, O extends import("../schemas.js").KVMap>(table: ({
117
117
  inputs: I;
118
- referenceOutputs: O;
118
+ referenceOutputs?: O | undefined;
119
119
  } & Record<string, any>)[], config?: import("../utils/jestlike/types.js").LangSmithJestlikeWrapperConfig | undefined) => (name: string, fn: (params: {
120
120
  inputs: I;
121
121
  referenceOutputs?: O | undefined;
@@ -123,7 +123,7 @@ declare const test: (<I extends Record<string, any> = Record<string, any>, O ext
123
123
  };
124
124
  each: <I extends import("../schemas.js").KVMap, O extends import("../schemas.js").KVMap>(table: ({
125
125
  inputs: I;
126
- referenceOutputs: O;
126
+ referenceOutputs?: O | undefined;
127
127
  } & Record<string, any>)[], config?: import("../utils/jestlike/types.js").LangSmithJestlikeWrapperConfig | undefined) => (name: string, fn: (params: {
128
128
  inputs: I;
129
129
  referenceOutputs?: O | undefined;
@@ -19,7 +19,7 @@ export declare function generateWrapperFromJestlikeMethods(methods: Record<strin
19
19
  } & Record<string, any>) => unknown | Promise<unknown>, timeout?: number) => void) & {
20
20
  each: <I_1 extends KVMap, O_1 extends KVMap>(table: ({
21
21
  inputs: I_1;
22
- referenceOutputs: O_1;
22
+ referenceOutputs?: O_1 | undefined;
23
23
  } & Record<string, any>)[], config?: LangSmithJestlikeWrapperConfig) => (name: string, fn: (params: {
24
24
  inputs: I_1;
25
25
  referenceOutputs?: O_1 | undefined;
@@ -31,7 +31,7 @@ export declare function generateWrapperFromJestlikeMethods(methods: Record<strin
31
31
  } & Record<string, any>) => unknown | Promise<unknown>, timeout?: number) => void) & {
32
32
  each: <I_1 extends KVMap, O_1 extends KVMap>(table: ({
33
33
  inputs: I_1;
34
- referenceOutputs: O_1;
34
+ referenceOutputs?: O_1 | undefined;
35
35
  } & Record<string, any>)[], config?: LangSmithJestlikeWrapperConfig) => (name: string, fn: (params: {
36
36
  inputs: I_1;
37
37
  referenceOutputs?: O_1 | undefined;
@@ -39,7 +39,7 @@ export declare function generateWrapperFromJestlikeMethods(methods: Record<strin
39
39
  };
40
40
  each: <I_1 extends KVMap, O_1 extends KVMap>(table: ({
41
41
  inputs: I_1;
42
- referenceOutputs: O_1;
42
+ referenceOutputs?: O_1 | undefined;
43
43
  } & Record<string, any>)[], config?: LangSmithJestlikeWrapperConfig) => (name: string, fn: (params: {
44
44
  inputs: I_1;
45
45
  referenceOutputs?: O_1 | undefined;
@@ -55,7 +55,7 @@ export declare function generateWrapperFromJestlikeMethods(methods: Record<strin
55
55
  } & Record<string, any>) => unknown | Promise<unknown>, timeout?: number) => void) & {
56
56
  each: <I_1 extends KVMap, O_1 extends KVMap>(table: ({
57
57
  inputs: I_1;
58
- referenceOutputs: O_1;
58
+ referenceOutputs?: O_1 | undefined;
59
59
  } & Record<string, any>)[], config?: LangSmithJestlikeWrapperConfig) => (name: string, fn: (params: {
60
60
  inputs: I_1;
61
61
  referenceOutputs?: O_1 | undefined;
@@ -67,7 +67,7 @@ export declare function generateWrapperFromJestlikeMethods(methods: Record<strin
67
67
  } & Record<string, any>) => unknown | Promise<unknown>, timeout?: number) => void) & {
68
68
  each: <I_1 extends KVMap, O_1 extends KVMap>(table: ({
69
69
  inputs: I_1;
70
- referenceOutputs: O_1;
70
+ referenceOutputs?: O_1 | undefined;
71
71
  } & Record<string, any>)[], config?: LangSmithJestlikeWrapperConfig) => (name: string, fn: (params: {
72
72
  inputs: I_1;
73
73
  referenceOutputs?: O_1 | undefined;
@@ -75,7 +75,7 @@ export declare function generateWrapperFromJestlikeMethods(methods: Record<strin
75
75
  };
76
76
  each: <I_1 extends KVMap, O_1 extends KVMap>(table: ({
77
77
  inputs: I_1;
78
- referenceOutputs: O_1;
78
+ referenceOutputs?: O_1 | undefined;
79
79
  } & Record<string, any>)[], config?: LangSmithJestlikeWrapperConfig) => (name: string, fn: (params: {
80
80
  inputs: I_1;
81
81
  referenceOutputs?: O_1 | undefined;
@@ -66,7 +66,7 @@ declare const test: (<I extends Record<string, any> = Record<string, any>, O ext
66
66
  } & Record<string, any>) => unknown, timeout?: number | undefined) => void) & {
67
67
  each: <I_1 extends import("../schemas.js").KVMap, O_1 extends import("../schemas.js").KVMap>(table: ({
68
68
  inputs: I_1;
69
- referenceOutputs: O_1;
69
+ referenceOutputs?: O_1 | undefined;
70
70
  } & Record<string, any>)[], config?: import("../utils/jestlike/types.js").LangSmithJestlikeWrapperConfig | undefined) => (name: string, fn: (params: {
71
71
  inputs: I_1;
72
72
  referenceOutputs?: O_1 | undefined;
@@ -78,7 +78,7 @@ declare const test: (<I extends Record<string, any> = Record<string, any>, O ext
78
78
  } & Record<string, any>) => unknown, timeout?: number | undefined) => void) & {
79
79
  each: <I_1 extends import("../schemas.js").KVMap, O_1 extends import("../schemas.js").KVMap>(table: ({
80
80
  inputs: I_1;
81
- referenceOutputs: O_1;
81
+ referenceOutputs?: O_1 | undefined;
82
82
  } & Record<string, any>)[], config?: import("../utils/jestlike/types.js").LangSmithJestlikeWrapperConfig | undefined) => (name: string, fn: (params: {
83
83
  inputs: I_1;
84
84
  referenceOutputs?: O_1 | undefined;
@@ -86,7 +86,7 @@ declare const test: (<I extends Record<string, any> = Record<string, any>, O ext
86
86
  };
87
87
  each: <I_1 extends import("../schemas.js").KVMap, O_1 extends import("../schemas.js").KVMap>(table: ({
88
88
  inputs: I_1;
89
- referenceOutputs: O_1;
89
+ referenceOutputs?: O_1 | undefined;
90
90
  } & Record<string, any>)[], config?: import("../utils/jestlike/types.js").LangSmithJestlikeWrapperConfig | undefined) => (name: string, fn: (params: {
91
91
  inputs: I_1;
92
92
  referenceOutputs?: O_1 | undefined;
@@ -101,7 +101,7 @@ declare const test: (<I extends Record<string, any> = Record<string, any>, O ext
101
101
  } & Record<string, any>) => unknown, timeout?: number | undefined) => void) & {
102
102
  each: <I extends import("../schemas.js").KVMap, O extends import("../schemas.js").KVMap>(table: ({
103
103
  inputs: I;
104
- referenceOutputs: O;
104
+ referenceOutputs?: O | undefined;
105
105
  } & Record<string, any>)[], config?: import("../utils/jestlike/types.js").LangSmithJestlikeWrapperConfig | undefined) => (name: string, fn: (params: {
106
106
  inputs: I;
107
107
  referenceOutputs?: O | undefined;
@@ -113,7 +113,7 @@ declare const test: (<I extends Record<string, any> = Record<string, any>, O ext
113
113
  } & Record<string, any>) => unknown, timeout?: number | undefined) => void) & {
114
114
  each: <I extends import("../schemas.js").KVMap, O extends import("../schemas.js").KVMap>(table: ({
115
115
  inputs: I;
116
- referenceOutputs: O;
116
+ referenceOutputs?: O | undefined;
117
117
  } & Record<string, any>)[], config?: import("../utils/jestlike/types.js").LangSmithJestlikeWrapperConfig | undefined) => (name: string, fn: (params: {
118
118
  inputs: I;
119
119
  referenceOutputs?: O | undefined;
@@ -121,7 +121,7 @@ declare const test: (<I extends Record<string, any> = Record<string, any>, O ext
121
121
  };
122
122
  each: <I extends import("../schemas.js").KVMap, O extends import("../schemas.js").KVMap>(table: ({
123
123
  inputs: I;
124
- referenceOutputs: O;
124
+ referenceOutputs?: O | undefined;
125
125
  } & Record<string, any>)[], config?: import("../utils/jestlike/types.js").LangSmithJestlikeWrapperConfig | undefined) => (name: string, fn: (params: {
126
126
  inputs: I;
127
127
  referenceOutputs?: O | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "langsmith",
3
- "version": "0.3.10-rc.0",
3
+ "version": "0.3.10",
4
4
  "description": "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.",
5
5
  "packageManager": "yarn@1.22.19",
6
6
  "files": [