ASG Models commited on
Commit
5808bd1
1 Parent(s): 9f40cfa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -105,10 +105,10 @@ def clean_text(text):
105
 
106
  def text_to_speech(text):
107
 
108
- job = dash(text)
109
  pad_text=''
110
  k=0
111
- for chunk in job:
112
 
113
  pad_text+=str(clean_text(chunk))
114
 
 
105
 
106
  def text_to_speech(text):
107
 
108
+ response = get_answer_ai(text)
109
  pad_text=''
110
  k=0
111
+ for chunk in response:
112
 
113
  pad_text+=str(clean_text(chunk))
114