PyRunner / routes /voice.py
Akoda35's picture
Create routes/voice.py
dd70b60 verified
Raw
History Blame Contribute Delete
170 Bytes
from fastapi import APIRouter
router = APIRouter(prefix="/voice")
@router.post("/generate")
async def generate_voice():
return {
"audio": "generated"
}