Spaces:
Running
Running
from fastapi import FastAPI | |
from phoneme import test_sound | |
app = FastAPI() | |
def greet_json(): | |
return {"Hello": "World!", "Eat": "Cat"} | |
def scoring(input_text, audio): | |
test_sound() |