Spaces:
Running
Running
File size: 419 Bytes
0ed2ee7 3671cba ee259c3 3671cba 697988f d687e0e 0ed2ee7 d687e0e fc71933 ee259c3 fc71933 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.post('/predict')
async def predict_with_prompt(prompt: str):
return "你好"+prompt
|