├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app.js ├── docker-compose.yml ├── package.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/langchain-local-knowledgebase/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/langchain-local-knowledgebase/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/langchain-local-knowledgebase/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/langchain-local-knowledgebase/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/langchain-local-knowledgebase/HEAD/app.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/langchain-local-knowledgebase/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/langchain-local-knowledgebase/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voiceflow-community/langchain-local-knowledgebase/HEAD/yarn.lock --------------------------------------------------------------------------------