File size: 1,019 Bytes
eb66dcb |
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 28 29 30 31 32 33 34 |
from fastapi import FastAPI, HTTPException
from pydantic import BaseModel
from deep_translator import GoogleTranslator
from fastapi.responses import JSONResponse
from main import process
# Create the FastAPI app instance
app = FastAPI()
# Root endpoint
@app.get("/")
async def home():
return {"message": "Welcome to my FastAPI API on Hugging Face Spaces!"}
# Translate endpoint that accepts a query parameter 'text'
@app.get("/translate")
async def translate(text: str = ""):
if not text:
raise HTTPException(status_code=400, detail="No text provided")
# Perform translation using deep_translator
translator = GoogleTranslator(source="auto", target="mr")
result = translator.translate(text)
return {"result": result}
@app.get("/chatbot")
async def chatbot(text: str = ""):
if not text:
raise HTTPException(status_code=400, detail="No text provided")
# Perform translation using deep_translator
result = process(query=text)
return {"result": result}
|