├── .devcontainer └── devcontainer.json ├── Dockerfile ├── Home.py ├── LICENSE ├── README.md ├── assets └── Chinook.db ├── pages ├── 1_💬_basic_chatbot.py ├── 2_⭐_context_aware_chatbot.py ├── 3_🌐_chatbot_with_internet_access.py ├── 4_📄_chat_with_your_documents.py ├── 5_🛢_chat_with_sql_db.py └── 6_🔗_chat_with_website.py ├── requirements.txt ├── streaming.py └── utils.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/Home.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /assets/Chinook.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/assets/Chinook.db -------------------------------------------------------------------------------- /pages/1_💬_basic_chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/pages/1_💬_basic_chatbot.py -------------------------------------------------------------------------------- /pages/2_⭐_context_aware_chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/pages/2_⭐_context_aware_chatbot.py -------------------------------------------------------------------------------- /pages/3_🌐_chatbot_with_internet_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/pages/3_🌐_chatbot_with_internet_access.py -------------------------------------------------------------------------------- /pages/4_📄_chat_with_your_documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/pages/4_📄_chat_with_your_documents.py -------------------------------------------------------------------------------- /pages/5_🛢_chat_with_sql_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/pages/5_🛢_chat_with_sql_db.py -------------------------------------------------------------------------------- /pages/6_🔗_chat_with_website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/pages/6_🔗_chat_with_website.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/streaming.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankdeshpande/langchain-chatbot/HEAD/utils.py --------------------------------------------------------------------------------