Add LangchainJS Examples (#146)

This commit is contained in:
Dave 2023-05-01 17:18:14 -04:00 committed by GitHub
parent 92452d46da
commit 88f472e5d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 2536 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{
"name": "langchainjs-localai-example",
"version": "0.1.0",
"description": "Trivial Example of using langchain + the OpenAI API + LocalAI together",
"main": "index.mjs",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"start": "node --trace-warnings dist/index.mjs"
},
"author": "dave@gray101.com",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.16.3",
"typescript": "^5.0.4"
},
"dependencies": {
"langchain": "^0.0.67",
"typeorm": "^0.3.15"
}
}