Spaces:
Runtime error
Runtime error
File size: 606 Bytes
65d4d2c fe16cf9 65d4d2c fe16cf9 ed45e59 65d4d2c |
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 |
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from inference import outcome
import warnings
warnings.filterwarnings("ignore")
app=FastAPI()
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
#since CORS has been enabled, this api can be used to fetch data using jquery (https://api.jquery.com/jQuery.get/)
@app.get('/')
def index():
return {"message":"Welcome to Hinglish Translator"}
@app.post('/predict')
def predict(input: str):
return {"result":outcome(input)}
|