Kia09 keertan2610 commited on
Commit
91131a9
·
verified ·
1 Parent(s): e34bebd

Update app.py (#2)

Browse files

- Update app.py (a3ba09b68e6a3dd96b60cb1069bb54d01d4c5c60)


Co-authored-by: Keertan Balaji <keertan2610@users.noreply.huggingface.co>

Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -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