langsmith 0.7.0 → 0.7.1
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/experimental/sandbox.cjs +1 -0
- package/experimental/sandbox.d.cts +1 -0
- package/experimental/sandbox.d.ts +1 -0
- package/experimental/sandbox.js +1 -0
- package/package.json +14 -1
package/dist/index.cjs
CHANGED
|
@@ -18,4 +18,4 @@ Object.defineProperty(exports, "PromptCache", { enumerable: true, get: function
|
|
|
18
18
|
Object.defineProperty(exports, "configureGlobalPromptCache", { enumerable: true, get: function () { return index_js_1.configureGlobalPromptCache; } });
|
|
19
19
|
Object.defineProperty(exports, "promptCacheSingleton", { enumerable: true, get: function () { return index_js_1.promptCacheSingleton; } });
|
|
20
20
|
// Update using pnpm bump-version
|
|
21
|
-
exports.__version__ = "0.7.
|
|
21
|
+
exports.__version__ = "0.7.1";
|
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, PromptCache, type CacheConfig, type CacheMetrics, configureGlobalPromptCache, promptCacheSingleton, } from "./utils/prompt_cache/index.js";
|
|
8
|
-
export declare const __version__ = "0.7.
|
|
8
|
+
export declare const __version__ = "0.7.1";
|
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, PromptCache, configureGlobalPromptCache, promptCacheSingleton, } from "./utils/prompt_cache/index.js";
|
|
7
7
|
// Update using pnpm bump-version
|
|
8
|
-
export const __version__ = "0.7.
|
|
8
|
+
export const __version__ = "0.7.1";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/sandbox/index.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/sandbox/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/sandbox/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/sandbox/index.js'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "langsmith",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Client library to connect to the LangSmith Observability and Evaluation Platform.",
|
|
5
5
|
"packageManager": "pnpm@10.33.0",
|
|
6
6
|
"files": [
|
|
@@ -97,6 +97,10 @@
|
|
|
97
97
|
"experimental/anthropic.js",
|
|
98
98
|
"experimental/anthropic.d.ts",
|
|
99
99
|
"experimental/anthropic.d.cts",
|
|
100
|
+
"experimental/sandbox.cjs",
|
|
101
|
+
"experimental/sandbox.js",
|
|
102
|
+
"experimental/sandbox.d.ts",
|
|
103
|
+
"experimental/sandbox.d.cts",
|
|
100
104
|
"sandbox.cjs",
|
|
101
105
|
"sandbox.js",
|
|
102
106
|
"sandbox.d.ts",
|
|
@@ -446,6 +450,15 @@
|
|
|
446
450
|
"import": "./experimental/anthropic.js",
|
|
447
451
|
"require": "./experimental/anthropic.cjs"
|
|
448
452
|
},
|
|
453
|
+
"./experimental/sandbox": {
|
|
454
|
+
"types": {
|
|
455
|
+
"import": "./experimental/sandbox.d.ts",
|
|
456
|
+
"require": "./experimental/sandbox.d.cts",
|
|
457
|
+
"default": "./experimental/sandbox.d.ts"
|
|
458
|
+
},
|
|
459
|
+
"import": "./experimental/sandbox.js",
|
|
460
|
+
"require": "./experimental/sandbox.cjs"
|
|
461
|
+
},
|
|
449
462
|
"./sandbox": {
|
|
450
463
|
"types": {
|
|
451
464
|
"import": "./sandbox.d.ts",
|