Spaces:
Runtime error
Runtime error
File size: 450 Bytes
2f97760 |
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 |
from model import model_pipeline
from typing import Union
from fastapi import FastAPI, UploadFile
import io
from PIL import Image
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}
@app.post("/ask")
def ask(text: str, image: UploadFile):
photos = image.file.read()
image = Image.open(io.BytesIO(photos))
result = model_pipeline(text, image)
return {"answer": result}
|