michaelj's picture
test
8b49d79
raw
history blame
448 Bytes
# https://medium.com/@qacheampong/building-and-deploying-a-fastapi-app-with-hugging-face-9210e9b4a713
# https://huggingface.co/spaces/Queensly/FastAPI_in_Docker
from fastapi import FastAPI
import uvicorn
app = FastAPI()
#Endpoints
#Root endpoints
@app.get("/")
def root():
return {"API": "Sum of 2 Squares"}
@app.route('/predict', methods=['POST'])
def predict():
prompt = request.json.get('prompt')
return "你好啊"+prompt