langsmith 0.1.57 → 0.1.58
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/evaluation/_runner.cjs +1 -0
- package/dist/evaluation/_runner.js +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -421,6 +421,7 @@ class _ExperimentManager {
|
|
|
421
421
|
: new Date(example.created_at).toISOString(),
|
|
422
422
|
},
|
|
423
423
|
client: fields.client,
|
|
424
|
+
tracingEnabled: true,
|
|
424
425
|
};
|
|
425
426
|
const evaluatorResponse = await evaluator.evaluateRun(run, example, options);
|
|
426
427
|
evaluationResults.results.push(...(await fields.client.logEvaluationFeedback(evaluatorResponse, run)));
|
|
@@ -417,6 +417,7 @@ export class _ExperimentManager {
|
|
|
417
417
|
: new Date(example.created_at).toISOString(),
|
|
418
418
|
},
|
|
419
419
|
client: fields.client,
|
|
420
|
+
tracingEnabled: true,
|
|
420
421
|
};
|
|
421
422
|
const evaluatorResponse = await evaluator.evaluateRun(run, example, options);
|
|
422
423
|
evaluationResults.results.push(...(await fields.client.logEvaluationFeedback(evaluatorResponse, run)));
|
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.1.
|
|
11
|
+
exports.__version__ = "0.1.58";
|
package/dist/index.d.ts
CHANGED
|
@@ -2,4 +2,4 @@ export { Client, type ClientConfig } from "./client.js";
|
|
|
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.1.
|
|
5
|
+
export declare const __version__ = "0.1.58";
|
package/dist/index.js
CHANGED