langsmith 0.2.9 → 0.2.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/client.cjs +1 -1
- package/dist/client.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/client.cjs
CHANGED
|
@@ -172,7 +172,7 @@ class AutoBatchQueue {
|
|
|
172
172
|
exports.AutoBatchQueue = AutoBatchQueue;
|
|
173
173
|
// 20 MB
|
|
174
174
|
exports.DEFAULT_BATCH_SIZE_LIMIT_BYTES = 20_971_520;
|
|
175
|
-
const SERVER_INFO_REQUEST_TIMEOUT =
|
|
175
|
+
const SERVER_INFO_REQUEST_TIMEOUT = 2500;
|
|
176
176
|
class Client {
|
|
177
177
|
constructor(config = {}) {
|
|
178
178
|
Object.defineProperty(this, "apiKey", {
|
package/dist/client.js
CHANGED
|
@@ -144,7 +144,7 @@ export class AutoBatchQueue {
|
|
|
144
144
|
}
|
|
145
145
|
// 20 MB
|
|
146
146
|
export const DEFAULT_BATCH_SIZE_LIMIT_BYTES = 20_971_520;
|
|
147
|
-
const SERVER_INFO_REQUEST_TIMEOUT =
|
|
147
|
+
const SERVER_INFO_REQUEST_TIMEOUT = 2500;
|
|
148
148
|
export class Client {
|
|
149
149
|
constructor(config = {}) {
|
|
150
150
|
Object.defineProperty(this, "apiKey", {
|
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.2.
|
|
11
|
+
exports.__version__ = "0.2.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.2.
|
|
5
|
+
export declare const __version__ = "0.2.10";
|
package/dist/index.js
CHANGED