Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 792 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 792 Bytes

Talk to YouTube extension

Talk to any YouTube video

Installation

Backend

  1. Create a json file tokens.json that will have your model provider tokens in the following format
{
  "openai": "<YOUR_OPENAI_TOKEN>",
  "anthropic": "<YOUR_ANTHROPIC_TOKEN>",
  "...": "..."
}
  1. Install the requirements: pip install -r requirements.txt
  2. Run the server from the talk-yt directory: python websocket.py

Frontend

  1. Open any Chromium-based browser (e.g. Google Chrome, Opera, Brave)
  2. Go to the extension page at chrome://extensions, or by following sandwich button > More Tools > Extensions
  3. Make sure "Developer mode" is enabled, usually in the top-right corner
  4. Click "Load unpacked" and select the chromium directory from the frontend directory.