Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

⚡ Building applications with LLMs through composability ⚡

![npm](https://img.shields.io/npm/dm/langchain) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Twitter](https://img.shields.io/twitter/url/https/twitter.com/langchainai.svg?style=social&label=Follow%20%40LangChainAI)](https://twitter.com/langchainai) [![Open in Dev Containers](https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode)](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/langchain-ai/langchainjs)
![npm](https://img.shields.io/npm/dm/langchain) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Twitter](https://img.shields.io/twitter/url/https/twitter.com/langchainai.svg?style=social&label=Follow%20%40LangChainAI)](https://twitter.com/langchainai) [![Open in Dev Containers](https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode)](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/langchain-ai/langchainjs)
[<img src="https://github.com/codespaces/badge.svg" title="Open in Github Codespace" width="150" height="20">](https://codespaces.new/langchain-ai/langchainjs)

Looking for the Python version? Check out [LangChain](https://github.com/langchain-ai/langchain).
Expand Down Expand Up @@ -91,7 +91,7 @@ Agents allow an LLM autonomy over how a task is accomplished. Agents make decisi
- Overview of the [interfaces](https://js.langchain.com/docs/how_to/lcel_cheatsheet/), [modules](https://js.langchain.com/docs/concepts) and [integrations](https://js.langchain.com/docs/integrations/platforms/)
- [Full Documentation](https://js.langchain.com)
- [Tutorial](https://js.langchain.com/docs/tutorials/) walkthroughs
- [Langhain Forum](https://forum.langchain.com)
- [LangChain Forum](https://forum.langchain.com)
- [API Reference](https://api.js.langchain.com)

## 💁 Contributing
Expand Down
2 changes: 1 addition & 1 deletion internal/net-mocks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Additionally when a response comes back with `Content-Type: text/event-stream` (

### Using dev tools

HAR is a lesser known web standard that has its own place in modern web browser devtools, and its the format that we're using to retain network activity for later runs. This means that we can inspect all network transactions that occured in a test directly in the browser.
HAR is a lesser known web standard that has its own place in modern web browser devtools, and it's the format that we're using to retain network activity for later runs. This means that we can inspect all network transactions that occurred in a test directly in the browser.

<video src="https://github.com/user-attachments/assets/36de46b7-d9d6-408a-9d06-4185dd990020" controls style="max-width: 100%;">
Your browser does not support the video tag.
Expand Down
2 changes: 1 addition & 1 deletion langchain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Agents allow an LLM autonomy over how a task is accomplished. Agents make decisi
- Overview of the [interfaces](https://js.langchain.com/docs/how_to/lcel_cheatsheet/), [modules](https://js.langchain.com/docs/concepts) and [integrations](https://js.langchain.com/docs/integrations/platforms/)
- [Full Documentation](https://js.langchain.com)
- [Tutorial](https://js.langchain.com/docs/tutorials/) walkthroughs
- [Langhain Forum](https://forum.langchain.com)
- [LangChain Forum](https://forum.langchain.com)
- [API Reference](https://api.js.langchain.com)

## 💁 Contributing
Expand Down
6 changes: 3 additions & 3 deletions libs/langchain-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
"scripts": {
"build": "yarn clean && yarn turbo:command build:internal --filter=@langchain/scripts",
"build:internal": "tsc --project ./tsconfig.build.json && yarn move:artifacts && yarn build:generated",
"move:artifacts": "rimraf dist && mkdir -p dist && mv dist_build/* dist/",
"move:artifacts": "rimraf dist && node -e \"const fs = require('fs'); fs.mkdirSync('dist', {recursive: true}); fs.cpSync('dist_build', 'dist', {recursive: true});\"",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we are using rimraf , let's be consistent and also use mkdirp from NPM for this.

"build:generated": "node bin/build.js --create-entrypoints --pre --tree-shaking",
"build:turbo": "yarn turbo:command build --filter=@langchain/scripts",
"lint:eslint": "NODE_OPTIONS=--max-old-space-size=4096 eslint --cache --ext .ts,.js src/",
"lint:dpdm": "dpdm --skip-dynamic-imports circular --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
"lint": "yarn lint:eslint && yarn lint:dpdm",
"lint:fix": "yarn lint:eslint --fix && yarn lint:dpdm",
"clean": "rm -rf ./dist ./dist_build .turbo",
"clean": "rimraf ./dist ./dist_build .turbo",
"prepack": "yarn build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
Expand Down Expand Up @@ -138,4 +138,4 @@
"check_broken_links.d.ts",
"check_broken_links.d.cts"
]
}
}