-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into brace/agent-stream-example
- Loading branch information
Showing
13 changed files
with
85 additions
and
133 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
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 was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
docs/core_docs/docs/modules/agents/agent_types/structured_chat.mdx
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,12 +19,12 @@ | |
"packageManager": "[email protected]", | ||
"scripts": { | ||
"build": "turbo run build --filter=\"!test-exports-*\" --concurrency 1", | ||
"build:deps": "yarn build --filter=@langchain/openai --filter=@langchain/anthropic --filter=@langchain/core", | ||
"build:deps": "yarn workspace @langchain/core build && yarn workspace @langchain/anthropic build && yarn workspace @langchain/openai build", | ||
"format": "turbo run format", | ||
"format:check": "turbo run format:check", | ||
"lint": "turbo run lint --concurrency 1", | ||
"lint:fix": "yarn lint -- --fix", | ||
"test": "yarn test:unit && yarn build --filter=langchain && yarn test:exports:docker", | ||
"test": "yarn test:unit && yarn workspace @langchain/core build && yarn workspace langchain build && yarn test:exports:docker", | ||
"test:unit": "turbo run test --filter @langchain/core --filter langchain", | ||
"test:int": "yarn run test:int:deps && turbo run test:integration ; yarn run test:int:deps:down", | ||
"test:int:deps": "docker compose -f test-int-deps-docker-compose.yml up -d", | ||
|
@@ -34,8 +34,8 @@ | |
"publish:core": "bash langchain/scripts/release-branch.sh && turbo run --filter @langchain/core build lint test --concurrency 1 && yarn run test:exports:docker && yarn workspace @langchain/core run release && echo 'π Open https://github.com/langchain-ai/langchainjs/compare/release?expand=1 and merge the release PR'", | ||
"example": "yarn workspace examples start", | ||
"precommit": "turbo run precommit", | ||
"docs": "yarn workspace @langchain/core_docs start", | ||
"docs:api_refs": "yarn workspace @langchain/api_refs start" | ||
"docs": "yarn workspace core_docs start", | ||
"docs:api_refs": "yarn workspace api_refs start" | ||
}, | ||
"author": "LangChain", | ||
"license": "MIT", | ||
|
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.