Skip to content

starmorph/langchain-js-quickstart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Get Started with Langchain JS

a basic node.js template to run langchain.js

How to use this template

All you need to do is

  1. add your OpenAI API key to the .env file OPENAI_API_KEY=YOUR-KEY and

  2. run the app with the following command

npm install && npm run dev 

After that, you can edit the app.ts file to change the prompt.

app.ts uses langchain with OpenAI to generate a code snippet, format the response, and save the output (a complete react component) to a file.

How this template was built

  1. install dependencies
npm init es6 -y && npm install langchain openai dotenv @types/node
  1. setup node project
typescript ts-node 
npx tsc --init --rootDir src --outDir ./dist --esModuleInterop --lib ES2020 --target ES2020 --module nodenext --noImplicitAny true
  1. Update Package.json
  "scripts": { 
      "build": "tsc", 
      "start": "node ./dist/app.js", 
      "dev": "ts-node --esm ./src/app.ts"
  },
  1. Create app.ts in the src folder.
mkdir src 
echo "console.log('Welcome to the LangChain.js tutorial by LangChainers.')" > src/app.ts
  1. boot up
npm run build
npm run start

I followed this Blog post tutorial to setup the initial node environment.

About

A node.js single file app with a basic langchain script that uses OpenAI to generate a react component code snippet.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published