langsmith 0.4.9 → 0.4.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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/schemas.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -15,4 +15,4 @@ Object.defineProperty(exports, "uuid7FromTime", { enumerable: true, get: functio
|
|
|
15
15
|
var prompts_cache_js_1 = require("./utils/prompts_cache.cjs");
|
|
16
16
|
Object.defineProperty(exports, "Cache", { enumerable: true, get: function () { return prompts_cache_js_1.Cache; } });
|
|
17
17
|
// Update using yarn bump-version
|
|
18
|
-
exports.__version__ = "0.4.
|
|
18
|
+
exports.__version__ = "0.4.10";
|
package/dist/index.d.ts
CHANGED
|
@@ -5,4 +5,4 @@ export { overrideFetchImplementation } from "./singletons/fetch.js";
|
|
|
5
5
|
export { getDefaultProjectName } from "./utils/project.js";
|
|
6
6
|
export { uuid7, uuid7FromTime } from "./uuid.js";
|
|
7
7
|
export { Cache, type CacheConfig, type CacheMetrics, } from "./utils/prompts_cache.js";
|
|
8
|
-
export declare const __version__ = "0.4.
|
|
8
|
+
export declare const __version__ = "0.4.10";
|
package/dist/index.js
CHANGED
|
@@ -5,4 +5,4 @@ export { getDefaultProjectName } from "./utils/project.js";
|
|
|
5
5
|
export { uuid7, uuid7FromTime } from "./uuid.js";
|
|
6
6
|
export { Cache, } from "./utils/prompts_cache.js";
|
|
7
7
|
// Update using yarn bump-version
|
|
8
|
-
export const __version__ = "0.4.
|
|
8
|
+
export const __version__ = "0.4.10";
|
package/dist/schemas.d.ts
CHANGED
|
@@ -221,6 +221,7 @@ export interface ExampleUpdateWithAttachments extends ExampleUpdate {
|
|
|
221
221
|
export interface UploadExamplesResponse {
|
|
222
222
|
count: number;
|
|
223
223
|
example_ids: string[];
|
|
224
|
+
as_of?: string;
|
|
224
225
|
}
|
|
225
226
|
export interface UpdateExamplesResponse extends UploadExamplesResponse {
|
|
226
227
|
}
|