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,6 @@
FROM node:latest
COPY ./langchainjs-localai-example /app
WORKDIR /app
RUN npm install
RUN npm run build
ENTRYPOINT [ "npm", "run", "start" ]