File size: 448 Bytes
0ed2ee7
 
 
3671cba
ee259c3
3671cba
 
 
697988f
d687e0e
 
 
 
0ed2ee7
d687e0e
8b49d79
 
ee259c3
8b49d79
 
ee259c3
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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