CineAI commited on
Commit
8d06043
1 Parent(s): 5e83c71

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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