├── .gitattributes ├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── app.py ├── endpoints ├── chat.py └── ingest.py ├── example.env ├── handlers └── base.py ├── poetry.lock ├── pyproject.toml ├── startup.py ├── ui └── main.py └── utils └── alerts.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/app.py -------------------------------------------------------------------------------- /endpoints/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/endpoints/chat.py -------------------------------------------------------------------------------- /endpoints/ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/endpoints/ingest.py -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/example.env -------------------------------------------------------------------------------- /handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/handlers/base.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/startup.py -------------------------------------------------------------------------------- /ui/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/ui/main.py -------------------------------------------------------------------------------- /utils/alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueBash/langchain-chatbot/HEAD/utils/alerts.py --------------------------------------------------------------------------------