├── .gitattributes ├── .gitignore ├── README.md ├── app.py ├── assets └── chatserver-min.png ├── pyproject.toml ├── setup.cfg ├── setup.py └── src ├── chatserver ├── __init__.py ├── chatbot_chain.py ├── components │ ├── __init__.py │ └── llm_serve.py ├── lightning_client.py └── ui │ ├── __init__.py │ ├── main.py │ └── templates.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/app.py -------------------------------------------------------------------------------- /assets/chatserver-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/assets/chatserver-min.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/setup.py -------------------------------------------------------------------------------- /src/chatserver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/chatserver/chatbot_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/src/chatserver/chatbot_chain.py -------------------------------------------------------------------------------- /src/chatserver/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/src/chatserver/components/__init__.py -------------------------------------------------------------------------------- /src/chatserver/components/llm_serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/src/chatserver/components/llm_serve.py -------------------------------------------------------------------------------- /src/chatserver/lightning_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/src/chatserver/lightning_client.py -------------------------------------------------------------------------------- /src/chatserver/ui/__init__.py: -------------------------------------------------------------------------------- 1 | from .main import run as ui_render_fn 2 | -------------------------------------------------------------------------------- /src/chatserver/ui/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/src/chatserver/ui/main.py -------------------------------------------------------------------------------- /src/chatserver/ui/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/src/chatserver/ui/templates.py -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketmaurya/chatbot-server/HEAD/src/requirements.txt --------------------------------------------------------------------------------