langsmith 0.4.10 → 0.4.11
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/package.json +14 -1
- package/wrappers/gemini.cjs +1 -0
- package/wrappers/gemini.d.cts +1 -0
- package/wrappers/gemini.d.ts +1 -0
- package/wrappers/gemini.js +1 -0
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.11";
|
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.11";
|
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.11";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "langsmith",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.11",
|
|
4
4
|
"description": "Client library to connect to the LangSmith Observability and Evaluation Platform.",
|
|
5
5
|
"packageManager": "yarn@1.22.19",
|
|
6
6
|
"files": [
|
|
@@ -61,6 +61,10 @@
|
|
|
61
61
|
"wrappers/openai.js",
|
|
62
62
|
"wrappers/openai.d.ts",
|
|
63
63
|
"wrappers/openai.d.cts",
|
|
64
|
+
"wrappers/gemini.cjs",
|
|
65
|
+
"wrappers/gemini.js",
|
|
66
|
+
"wrappers/gemini.d.ts",
|
|
67
|
+
"wrappers/gemini.d.cts",
|
|
64
68
|
"singletons/traceable.cjs",
|
|
65
69
|
"singletons/traceable.js",
|
|
66
70
|
"singletons/traceable.d.ts",
|
|
@@ -352,6 +356,15 @@
|
|
|
352
356
|
"import": "./wrappers/openai.js",
|
|
353
357
|
"require": "./wrappers/openai.cjs"
|
|
354
358
|
},
|
|
359
|
+
"./wrappers/gemini": {
|
|
360
|
+
"types": {
|
|
361
|
+
"import": "./wrappers/gemini.d.ts",
|
|
362
|
+
"require": "./wrappers/gemini.d.cts",
|
|
363
|
+
"default": "./wrappers/gemini.d.ts"
|
|
364
|
+
},
|
|
365
|
+
"import": "./wrappers/gemini.js",
|
|
366
|
+
"require": "./wrappers/gemini.cjs"
|
|
367
|
+
},
|
|
355
368
|
"./singletons/traceable": {
|
|
356
369
|
"types": {
|
|
357
370
|
"import": "./singletons/traceable.d.ts",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/wrappers/gemini.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/wrappers/gemini.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/wrappers/gemini.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/wrappers/gemini.js'
|