Spaces:
Runtime error
Runtime error
| 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/) | |
| def index(): | |
| return {"message":"Welcome to Hinglish Translator"} | |
| def predict(input: str): | |
| return {"result":outcome(input)} | |