Update app.py
Browse files
app.py
CHANGED
@@ -32,7 +32,7 @@ def main():
|
|
32 |
text = a2t.predict()
|
33 |
response = llmchain(entity=text, id=0)
|
34 |
print(sys.getsizeof(a2t), " ", sys.getsizeof(text), " ", sys.getsizeof(response), " ", sys.getsizeof(llmchain))
|
35 |
-
t2a = T2A(response)
|
36 |
autoplay(t2a)
|
37 |
del response
|
38 |
|
|
|
32 |
text = a2t.predict()
|
33 |
response = llmchain(entity=text, id=0)
|
34 |
print(sys.getsizeof(a2t), " ", sys.getsizeof(text), " ", sys.getsizeof(response), " ", sys.getsizeof(llmchain))
|
35 |
+
t2a = T2A(response).get_audio()
|
36 |
autoplay(t2a)
|
37 |
del response
|
38 |
|