File size: 7,622 Bytes
63495ec | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 | # π Quick Start: Deploy to HuggingFace Spaces in 5 Minutes
## What You're Deploying
A **PowerPoint Script Generator** that uses AI to create presentation scripts for any topic.
**No installation required!** Everything runs in the cloud on HuggingFace Spaces.
---
## β‘ Super Fast Deployment (3 Steps)
### Step 1: Create a HuggingFace Account (if needed)
1. Go to https://huggingface.co/join
2. Sign up (free!)
3. Verify your email
### Step 2: Create a New Space
1. Go to https://huggingface.co/new-space
2. Fill in:
- **Owner**: Your username
- **Space name**: `ppt-script-generator`
- **License**: MIT
- **Select SDK**: Choose **Gradio**
- **Space hardware**: CPU basic (free)
- **Visibility**: Public
3. Click **"Create Space"**
### Step 3: Upload Your Files
You need to upload 3 files:
1. **Click "Files and versions"** tab
2. **Click "Add file" β "Upload files"**
3. **Upload these 3 files:**
π **File 1: `app.py`**
- Upload the `app.py` file from this package
π **File 2: `requirements.txt`**
- Upload `requirements_hf.txt`
- **IMPORTANT**: Rename it to `requirements.txt` when uploading
π **File 3: `README.md`**
- Upload `README_HF.md`
- **IMPORTANT**: Rename it to `README.md` when uploading
4. **Click "Commit changes to main"**
### Step 4: Wait for Build
- HuggingFace automatically builds your Space (takes 1-2 minutes)
- You'll see a progress indicator
- When complete, you'll see "App" tab become active
### Step 5: Use Your App!
- Click the **"App"** tab
- Your app is now live!
- Share the URL: `https://huggingface.co/spaces/YOUR_USERNAME/ppt-script-generator`
---
## π― Using Your App
### Try It Out
1. **Enter a topic**: e.g., "The Future of Renewable Energy"
2. **Set number of slides**: e.g., 5
3. **Choose audience**: e.g., "Business executives"
4. **Select tone**: e.g., "Professional"
5. **Click "Generate Presentation Script"**
6. **Wait 10-30 seconds** for AI to generate
7. **Copy the script** and use it!
### Example Input/Output
**Input:**
```
Topic: Introduction to Artificial Intelligence
Slides: 5
Audience: Students
Tone: Educational
```
**Output:**
```
---
Slide 1: What is Artificial Intelligence?
Speaker Script:
Welcome everyone! Today we're diving into the fascinating world
of Artificial Intelligence. AI is the science of making computers
think and learn like humans do. Imagine teaching a computer to
recognize your voice, recommend movies you'll love, or even drive
a car - that's all AI!
Key Points:
- AI makes computers intelligent
- Mimics human thinking and learning
- Used in everyday technology
- Growing field with huge potential
Timing: 45 seconds
---
[... 4 more slides ...]
```
---
## π File Structure (What You Uploaded)
```
Your HuggingFace Space:
β
βββ app.py # Main application
βββ requirements.txt # Python dependencies (gradio, huggingface_hub)
βββ README.md # Space description (with YAML frontmatter)
```
---
## β
Verification Checklist
After deployment, verify:
- [ ] Build completed successfully (green checkmark)
- [ ] "App" tab is accessible
- [ ] Example topics load correctly
- [ ] Generate button works
- [ ] Script output appears after 10-30 seconds
- [ ] Copy button works
- [ ] All dropdowns function properly
---
## π Common Issues & Fixes
### Issue 1: Build Failed
**Error**: Red X on build status
**Fix**:
1. Check "Logs" tab for error message
2. Common causes:
- Wrong file names (must be exact: `app.py`, `requirements.txt`, `README.md`)
- Missing YAML frontmatter in README.md
- Syntax error in app.py
### Issue 2: "Sleeping" Message
**Status**: App shows "This Space is sleeping"
**Fix**:
- Normal for free tier after inactivity
- Click anywhere to wake it up
- Takes 10-20 seconds to restart
### Issue 3: Generation Fails
**Error**: "API rate limit exceeded" or timeout
**Fix**:
- Wait 60 seconds and try again
- Reduce number of slides (try 3-5)
- Reduce max tokens (try 1500)
- This is normal during high server load
### Issue 4: Slow Generation
**Status**: Takes > 1 minute to generate
**Fix**:
- Normal for free tier
- HuggingFace API might be busy
- Try off-peak hours
- Consider upgrading to HF Pro for faster inference
---
## π¨ Customization (After Deployment)
Want to change something? Easy!
### Change App Title
1. Click "Files and versions"
2. Click `README.md`
3. Edit the `title:` line in YAML frontmatter
4. Commit changes
5. Space rebuilds automatically
### Change Example Topics
1. Click "Files and versions"
2. Click `app.py`
3. Find the `gr.Examples` section
4. Edit the example list
5. Commit changes
### Adjust Defaults
In `app.py`, find and modify:
```python
num_slides = gr.Slider(
minimum=3,
maximum=10,
value=5, # Change this default
...
)
```
---
## π Monitor Your Space
### View Analytics
1. Go to your Space page
2. Click "Analytics" tab
3. See:
- Total users
- Active users
- Usage patterns
### Check Logs
1. Click "Logs" tab
2. See real-time output
3. Debug any issues
---
## π Sharing Your Space
Your Space URL:
```
https://huggingface.co/spaces/YOUR_USERNAME/ppt-script-generator
```
### Share On:
- Social media (Twitter, LinkedIn)
- Your website or blog
- Email signature
- Portfolio
- GitHub README
### Embed in Website
```html
<gradio-app
src="https://huggingface.co/spaces/YOUR_USERNAME/ppt-script-generator">
</gradio-app>
<script
type="module"
src="https://gradio.s3-us-west-2.amazonaws.com/4.44.0/gradio.js">
</script>
```
---
## π‘ Tips for Success
### For Best Results:
1. **Be Specific**:
- β
"The Impact of AI on Healthcare Diagnostics"
- β "AI stuff"
2. **Choose Right Audience**:
- Match to who will actually listen
- Affects language complexity
3. **Appropriate Tone**:
- Professional for business
- Educational for students
- Technical for engineers
4. **Optimal Slides**:
- 3-7 slides work best
- More slides = slower generation
5. **Review Output**:
- Always customize to your style
- Add personal examples
- Practice timing
---
## π What This Demonstrates
This project shows your understanding of:
- β
**LLM Deployment**: Using AI models in production
- β
**Prompt Engineering**: Crafting effective prompts
- β
**Cloud Infrastructure**: Deploying to HuggingFace
- β
**UI/UX Design**: Building user-friendly interfaces
- β
**API Integration**: Using HuggingFace Inference API
- β
**Real-world Application**: Solving actual business problems
Perfect for your **Johns Hopkins Agentic AI Certificate** portfolio!
---
## π Need Help?
### Resources:
- **HuggingFace Docs**: https://huggingface.co/docs/hub/spaces
- **Gradio Guide**: https://gradio.app/docs
- **Community Forum**: https://discuss.huggingface.co
### Files Included:
- `DEPLOYMENT_GUIDE.md` - Detailed deployment instructions
- `test_hf_app.py` - Test script for local verification
- `app.py` - Main application code
- `README_HF.md` - Space description
---
## β¨ You're Done!
**Congratulations!** π
Your AI-powered PowerPoint Script Generator is now live on HuggingFace Spaces!
**Next steps:**
1. Test it with different topics
2. Share the URL with friends/colleagues
3. Add to your portfolio
4. Get feedback and iterate
**Your live app:**
```
https://huggingface.co/spaces/YOUR_USERNAME/ppt-script-generator
```
---
**Time to deploy: < 5 minutes** β‘
**Cost: $0 (completely free!)** π°
**Accessibility: Anyone, anywhere** π
**Built for: Johns Hopkins Agentic AI Program** π
|