├── .dockerignore ├── .gitignore ├── 01_first_webui.py ├── 02_first_chat.py ├── 03_first_chain.py ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── alice_in_wonderland.txt ├── amazon_q1_2023.txt ├── arch.png └── chat_falcon.png ├── chatbot.py ├── deploy-falcon-40b-instruct.ipynb └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .git/* 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /01_first_webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/01_first_webui.py -------------------------------------------------------------------------------- /02_first_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/02_first_chat.py -------------------------------------------------------------------------------- /03_first_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/03_first_chain.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /assets/alice_in_wonderland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/assets/alice_in_wonderland.txt -------------------------------------------------------------------------------- /assets/amazon_q1_2023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/assets/amazon_q1_2023.txt -------------------------------------------------------------------------------- /assets/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/assets/arch.png -------------------------------------------------------------------------------- /assets/chat_falcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/assets/chat_falcon.png -------------------------------------------------------------------------------- /chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/chatbot.py -------------------------------------------------------------------------------- /deploy-falcon-40b-instruct.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/deploy-falcon-40b-instruct.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/falcon-document-chatbot/HEAD/requirements.txt --------------------------------------------------------------------------------