Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,14 +1,45 @@
|
|
| 1 |
---
|
| 2 |
-
title: Summify
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
colorTo: indigo
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version: 5.39.0
|
| 8 |
app_file: app.py
|
| 9 |
-
pinned:
|
| 10 |
license: mit
|
| 11 |
-
short_description: AI-powered text summarizer
|
| 12 |
---
|
| 13 |
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: "Summify Pro ✨"
|
| 3 |
+
emoji: "🚀"
|
| 4 |
+
colorFrom: purple
|
| 5 |
colorTo: indigo
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: "5.39.0"
|
| 8 |
app_file: app.py
|
| 9 |
+
pinned: true
|
| 10 |
license: mit
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# Summify Pro - AI Text Summarizer
|
| 14 |
+
|
| 15 |
+
<div align="center">
|
| 16 |
+
|
| 17 |
+

|
| 18 |
+
*Instantly condense long texts into powerful summaries*
|
| 19 |
+
|
| 20 |
+
</div>
|
| 21 |
+
|
| 22 |
+
## ✨ Features
|
| 23 |
+
- **Gorgeous Glass UI** with gradient effects
|
| 24 |
+
- **BART-large-cnn** model for quality summaries
|
| 25 |
+
- **Mobile-friendly** design
|
| 26 |
+
- **Secure** API token handling
|
| 27 |
+
|
| 28 |
+
## 🚀 How to Use
|
| 29 |
+
1. Paste text (articles/essays/docs)
|
| 30 |
+
2. Click "Generate Summary"
|
| 31 |
+
3. Get condensed version instantly
|
| 32 |
+
|
| 33 |
+
```python
|
| 34 |
+
# API Example
|
| 35 |
+
import requests
|
| 36 |
+
response = requests.post(
|
| 37 |
+
"https://huggingface.co/spaces/uumerrr684/Summify/api/predict",
|
| 38 |
+
json={"data": ["Your text here..."]}
|
| 39 |
+
)
|
| 40 |
+
|
| 41 |
+
<br>
|
| 42 |
+
|
| 43 |
+
> **Pro Tip**: The app works best with news articles, research papers, and long-form content!
|
| 44 |
+
|
| 45 |
+
<sub>✨ Powered by [Gradio](https://gradio.app) and [Hugging Face](https://huggingface.co)</sub>
|