зеркало из https://github.com/microsoft/glue.git
8 строки
135 B
Python
8 строки
135 B
Python
|
import pytest
|
||
|
import sys
|
||
|
sys.path.append("./src")
|
||
|
import tts
|
||
|
|
||
|
def generate_tts(df, output):
|
||
|
df = tts.main(df, output)
|
||
|
return df
|