Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Kia09
/
Major_Project_1
like
0
Sleeping
App
Files
Files
Community
8
Fetching metadata from the HF Docker repository...
Update app.py
#2
by
keertan2610
- opened
Apr 29, 2025
base:
refs/heads/main
←
from:
refs/pr/2
Discussion
Files changed
+4
-1
Files changed (1)
hide
show
app.py
+4
-1
app.py
CHANGED
Viewed
@@ -1,4 +1,7 @@
1
-
from fastapi import FastAPI
2
3
app = FastAPI()
4
1
+
from fastapi import FastAPI
, Form
2
+
from fastapi.responses import StreamingResponse
3
+
from PIL import Image, ImageDraw, ImageFont
4
+
import io
5
6
app = FastAPI()
7