21
Aug
Hey there! If you're excited about building your own AI assistant using Langchain and Chainlit, you're in the right place. In this post, I'll walk you through the steps to set up a simple yet powerful AI assistant. Let’s dive in! Demo Steps to Configure Follow these steps to configure the app on your machine! 1. Clone Git Repo git clone https://github.com/jivaniyash/langchain-chat-assistant.git cd ./langchain-chat-assistant Enter fullscreen mode Exit fullscreen mode 2. Create & Activate Virtual Env sudo apt install python3.11-venv python3 -m venv .venv source ./.venv/bin/activate python3 -m pip install --upgrade pip Enter fullscreen mode Exit fullscreen mode 3. Install…