From e70acc0479e56d45f16f066f0dabe2b74e332ed9 Mon Sep 17 00:00:00 2001 From: Shubham Saboo <31396011+Shubhamsaboo@users.noreply.github.com> Date: Mon, 29 Apr 2024 15:20:06 -0500 Subject: [PATCH] Create README.md --- chat_with_youtube_videos/README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 chat_with_youtube_videos/README.md diff --git a/chat_with_youtube_videos/README.md b/chat_with_youtube_videos/README.md new file mode 100644 index 0000000..44bea91 --- /dev/null +++ b/chat_with_youtube_videos/README.md @@ -0,0 +1,30 @@ +## Chat with PDF 📚 + +LLM app with RAG to chat with PDF in just 30 lines of Python Code. The app uses Retrieval Augmented Generation (RAG) to provide accurate answers to questions based on the content of the uploaded PDF. + +### Features + +- Upload a PDF document +- Ask questions about the content of the PDF +- Get accurate answers using RAG and the selected LLM + +### How to get Started? + +1. Clone the GitHub repository + +```bash +git clone https://github.com/Shubhamsaboo/awesome-llm-apps.git +``` +2. Install the required dependencies: + +```bash +pip install -r requirements.txt +``` +3. Get your OpenAI API Key + +- Sign up for an [OpenAI account](https://platform.openai.com/) (or the LLM provider of your choice) and obtain your API key. + +4. Run the Streamlit App +```bash +streamlit run chat_youtube.py +```