Files
awesome-llm-apps/chat_with_X_tutorials/chat_with_gmail/README.md
2024-11-04 20:59:39 -06:00

1.3 KiB

📨 Chat with Gmail Inbox

LLM app with RAG to chat with Gmail 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 your Gmail Inbox.

Features

  • Connect to your Gmail Inbox
  • Ask questions about the content of your emails
  • Get accurate answers using RAG and the selected LLM

Installation

  1. Clone the repository
git clone https://github.com/Shubhamsaboo/awesome-llm-apps.git
  1. Install the required dependencies
pip install -r requirements.txt
  1. Set up your Google Cloud project and enable the Gmail API:
  • Go to the Google Cloud Console and create a new project.
  • Navigate to "APIs & Services > OAuth consent screen" and configure the OAuth consent screen.
  • Publish the OAuth consent screen by providing the necessary app information.
  • Enable the Gmail API and create OAuth client ID credentials.
  • Download the credentials in JSON format and save them as credentials.json in your working directory.
  1. Get your OpenAI API Key
  • Sign up for an OpenAI account (or the LLM provider of your choice) and obtain your API key.
  1. Run the Streamlit App
streamlit run chat_gmail.py