Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeantessier/langchain-javascript-example
An example of using LangChain in JavaScript with @langchain/core
https://github.com/jeantessier/langchain-javascript-example
Last synced: about 7 hours ago
JSON representation
An example of using LangChain in JavaScript with @langchain/core
- Host: GitHub
- URL: https://github.com/jeantessier/langchain-javascript-example
- Owner: jeantessier
- Created: 2024-12-13T21:25:35.000Z (9 days ago)
- Default Branch: main
- Last Pushed: 2024-12-19T21:14:48.000Z (3 days ago)
- Last Synced: 2024-12-19T22:29:44.304Z (3 days ago)
- Language: JavaScript
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LangChain JavaScript Example
A sample Node script that uses LangChain to talk to LLMs.
You’ll need an API key for each LLM. So just follow the instructions linked
below to obtain your API keys.- [OpenAI ChatGPT](https://platform.openai.com/api-keys)
- [Anthropic Claude](https://console.anthropic.com/settings/keys)
- [Google Gemini](https://aistudio.google.com/app/apikey)Save the keys to the `app/src/main/resources/.env` file as the corresponding
`..._API_KEY` environment variable. You can use
`app/src/main/resources/.env.template` as a guide to structure your `.env`
file.Install packages, if you haven't already.
```bash
pnpm install
```## To Run
The sample logic is in the file `index.js`.
To run against OpenAI's ChatGPT:
```bash
pnpm run main --model openai
```To run against Anthropic's Claude:
```bash
pnpm run main --model anthropic
```To run against Google's Gemini:
```bash
pnpm run main --model google
```If you don't specify `--model`, it will default to `openai` and use ChatGPT.