tts-openai / src /routers /tts_routes.py
imseldrith's picture
Upload folder using huggingface_hub
f32a529 verified
raw
history blame
965 Bytes
from fastapi import APIRouter, HTTPException, Response, status
from src import log_setup
from src.application.tts_preprocess import infer_tts_request
from src.model.tts_request import TTSRequest
from src.model.tts_response import TTSFailureResponse
LOGGER = log_setup.get_logger(__name__)
router = APIRouter()
@router.post("/")
async def tts(request: TTSRequest, response: Response):
LOGGER.info(f'TTS request {request}')
try:
infer_response = infer_tts_request(request)
return infer_response
except NotImplementedError as e:
LOGGER.exception('Failed to infer http exception %s', e)
response.status_code = status.HTTP_404_NOT_FOUND
return TTSFailureResponse(status_text=str(e))
except Exception as e:
LOGGER.exception('Failed to infer %s', e)
response.status_code = status.HTTP_500_INTERNAL_SERVER_ERROR
return TTSFailureResponse(status_text=f'Failed to process request {str(e)}')