Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -11,4 +11,23 @@ license: mit
|
|
11 |
short_description: Summarize any YouTube video using OpenAI Whisper and GPT-3.5
|
12 |
---
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
11 |
short_description: Summarize any YouTube video using OpenAI Whisper and GPT-3.5
|
12 |
---
|
13 |
|
14 |
+
# 🧠 YouTube Summary AI
|
15 |
+
|
16 |
+
> **Important:**
|
17 |
+
> This Space is intended to be **run locally** using Docker.
|
18 |
+
>
|
19 |
+
> Due to Hugging Face hosting limitations (e.g., YouTube download restrictions), **online usage may not work** properly.
|
20 |
+
>
|
21 |
+
> ✅ To use it successfully:
|
22 |
+
> - Download and install [Docker](https://www.docker.com/).
|
23 |
+
> - Then run the following command:
|
24 |
+
> ```bash
|
25 |
+
> docker run -it -p 7860:7860 --platform=linux/amd64 \
|
26 |
+
> -e OPENAI_API_KEY=your-key-here \
|
27 |
+
> registry.hf.space/wangston9-youtube-summary-ai:latest python app.py
|
28 |
+
> ```
|
29 |
+
> 🖥️ Then open [http://localhost:7860](http://localhost:7860) in your browser!
|
30 |
+
|
31 |
+
---
|
32 |
+
|
33 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|