-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(js): Limit queue batch concurrency, bump timeout, add maximum wai…
…t period for serverless envs (#1124) Fixes #1101 Bumps timeouts related to large uploads, limit the total amount of bandwidth used, and avoid blocking for too long in the default case Adds `LANGSMITH_TRACING_BACKGROUND` to set blocking behavior Bump to 0.2 will come along with this.
- Loading branch information
1 parent
1fbcc55
commit b9dc8f2
Showing
9 changed files
with
173 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "langsmith", | ||
"version": "0.1.67", | ||
"version": "0.2.0", | ||
"description": "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.", | ||
"packageManager": "[email protected]", | ||
"files": [ | ||
|
@@ -109,9 +109,9 @@ | |
"@babel/preset-env": "^7.22.4", | ||
"@faker-js/faker": "^8.4.1", | ||
"@jest/globals": "^29.5.0", | ||
"@langchain/core": "^0.3.1", | ||
"@langchain/langgraph": "^0.2.3", | ||
"@langchain/openai": "^0.3.0", | ||
"@langchain/core": "^0.3.14", | ||
"@langchain/langgraph": "^0.2.18", | ||
"@langchain/openai": "^0.3.11", | ||
"@tsconfig/recommended": "^1.0.2", | ||
"@types/jest": "^29.5.1", | ||
"@typescript-eslint/eslint-plugin": "^5.59.8", | ||
|
@@ -126,7 +126,7 @@ | |
"eslint-plugin-no-instanceof": "^1.0.1", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"jest": "^29.5.0", | ||
"langchain": "^0.3.2", | ||
"langchain": "^0.3.3", | ||
"openai": "^4.67.3", | ||
"prettier": "^2.8.8", | ||
"ts-jest": "^29.1.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.