File size: 473 Bytes
0ed2ee7
 
 
3671cba
ee259c3
3671cba
 
 
697988f
d687e0e
 
 
 
0ed2ee7
d687e0e
ffe28ed
2c891f7
ee259c3
ffe28ed
ee259c3
 
 
 
 
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
# 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.get('/Sum_Square')
async def predict(number_1: int, number_2: int):
    
    prediction = number_1**2 + number_2**2

    return prediction