ggoknar commited on
Commit
554d1f6
1 Parent(s): 83298a1

faster voice

Browse files
Files changed (1) hide show
  1. app.py +271 -106
app.py CHANGED
@@ -1,6 +1,7 @@
1
  from __future__ import annotations
2
 
3
  import os
 
4
  # By using XTTS you agree to CPML license https://coqui.ai/cpml
5
  os.environ["COQUI_TOS_AGREED"] = "1"
6
 
@@ -8,10 +9,16 @@ import gradio as gr
8
  import numpy as np
9
  import torch
10
  import nltk # we'll use this to split into sentences
11
- nltk.download('punkt')
 
12
  import uuid
13
 
 
 
 
 
14
  import ffmpeg
 
15
  import librosa
16
  import torchaudio
17
  from TTS.api import TTS
@@ -19,6 +26,12 @@ from TTS.tts.configs.xtts_config import XttsConfig
19
  from TTS.tts.models.xtts import Xtts
20
  from TTS.utils.generic_utils import get_user_data_dir
21
 
 
 
 
 
 
 
22
  # This will trigger downloading model
23
  print("Downloading if not downloaded Coqui XTTS V1")
24
  tts = TTS("tts_models/multilingual/multi-dataset/xtts_v1")
@@ -26,8 +39,10 @@ del tts
26
  print("XTTS downloaded")
27
 
28
  print("Loading XTTS")
29
- #Below will use model directly for inference
30
- model_path = os.path.join(get_user_data_dir("tts"), "tts_models--multilingual--multi-dataset--xtts_v1")
 
 
31
  config = XttsConfig()
32
  config.load_json(os.path.join(model_path, "config.json"))
33
  model = Xtts.init_from_config(config)
@@ -36,7 +51,7 @@ model.load_checkpoint(
36
  checkpoint_path=os.path.join(model_path, "model.pth"),
37
  vocab_path=os.path.join(model_path, "vocab.json"),
38
  eval=True,
39
- use_deepspeed=True
40
  )
41
  model.cuda()
42
  print("Done loading TTS")
@@ -48,13 +63,24 @@ DESCRIPTION = """# Voice chat with Mistral 7B Instruct"""
48
  css = """.toast-wrap { display: none !important } """
49
 
50
  from huggingface_hub import HfApi
 
51
  HF_TOKEN = os.environ.get("HF_TOKEN")
52
  # will use api to restart space on a unrecoverable error
53
  api = HfApi(token=HF_TOKEN)
54
 
55
  repo_id = "ylacombe/voice-chat-with-lama"
56
 
57
- system_message = "\nYou are a helpful, respectful and honest assistant. Your answers are short, ideally a few words long, if it is possible. Always answer as helpfully as possible, while being safe.\n\nIf a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information."
 
 
 
 
 
 
 
 
 
 
58
  temperature = 0.9
59
  top_p = 0.6
60
  repetition_penalty = 1.2
@@ -73,23 +99,43 @@ from huggingface_hub import InferenceClient
73
 
74
 
75
  # This client is down
76
- #whisper_client = Client("https://sanchit-gandhi-whisper-large-v2.hf.space/")
77
  # Replacement whisper client, it may be time limited
78
  whisper_client = Client("https://sanchit-gandhi-whisper-jax.hf.space")
79
- text_client = InferenceClient(
80
- "mistralai/Mistral-7B-Instruct-v0.1"
81
- )
 
 
 
 
 
 
 
 
 
 
82
 
83
  def format_prompt(message, history):
84
- prompt = "<s>"
85
- for user_prompt, bot_response in history:
86
- prompt += f"[INST] {user_prompt} [/INST]"
87
- prompt += f" {bot_response}</s> "
88
- prompt += f"[INST] {message} [/INST]"
89
- return prompt
 
 
 
 
 
90
 
91
  def generate(
92
- prompt, history, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0,
 
 
 
 
 
93
  ):
94
  temperature = float(temperature)
95
  if temperature < 1e-2:
@@ -108,35 +154,40 @@ def generate(
108
  formatted_prompt = format_prompt(prompt, history)
109
 
110
  try:
111
- stream = text_client.text_generation(formatted_prompt, **generate_kwargs, stream=True, details=True, return_full_text=False)
 
 
 
 
 
 
112
  output = ""
113
  for response in stream:
114
  output += response.token.text
115
  yield output
116
 
117
  except Exception as e:
118
- if "Too Many Requests" in str(e):
119
- print("ERROR: Too many requests on mistral client")
120
- gr.Warning("Unfortunately Mistral is unable to process")
121
- output = "Unfortuanately I am not able to process your request now !"
122
- else:
123
- print("Unhandled Exception: ", str(e))
124
- gr.Warning("Unfortunately Mistral is unable to process")
125
- output = "I do not know what happened but I could not understand you ."
126
-
127
  return output
128
 
129
 
130
  def transcribe(wav_path):
131
-
132
  # get first element from whisper_jax and strip it to delete begin and end space
133
  return whisper_client.predict(
134
- wav_path, # str (filepath or URL to file) in 'inputs' Audio component
135
- "transcribe", # str in 'Task' Radio component
136
- False, # return_timestamps=False for whisper-jax https://gist.github.com/sanchit-gandhi/781dd7003c5b201bfe16d28634c8d4cf#file-whisper_jax_endpoint-py
137
- api_name="/predict"
138
  )[0].strip()
139
-
140
 
141
  # Chatbot demo with multimodal input (text, markdown, LaTeX, code blocks, image, audio, & video). Plus shows support for streaming text.
142
 
@@ -149,127 +200,234 @@ def add_text(history, text):
149
 
150
  def add_file(history, file):
151
  history = [] if history is None else history
152
-
153
  try:
154
- text = transcribe(
155
- file
156
- )
157
- print("Transcribed text:",text)
158
  except Exception as e:
159
  print(str(e))
160
  gr.Warning("There was an issue with transcription, please try writing for now")
161
  # Apply a null text on error
162
  text = "Transcription seems failed, please tell me a joke about chickens"
163
-
164
- history = history + [(text, None)]
165
- return history
166
 
 
 
167
 
168
 
169
- def bot(history, system_prompt=""):
 
170
  history = [] if history is None else history
171
 
172
  if system_prompt == "":
173
  system_prompt = system_message
174
-
175
  history[-1][1] = ""
176
  for character in generate(history[-1][0], history[:-1]):
177
  history[-1][1] = character
178
- yield history
179
-
180
 
181
 
182
- ########### COQUI TTS FUNCTIONS #############
183
  def get_latents(speaker_wav):
184
  # Generate speaker embedding and latents for TTS
185
- gpt_cond_latent, diffusion_conditioning, speaker_embedding = model.get_conditioning_latents(audio_path=speaker_wav)
 
 
 
 
186
  return gpt_cond_latent, diffusion_conditioning, speaker_embedding
187
 
188
- latent_map={}
 
189
  latent_map["Female_Voice"] = get_latents("examples/female.wav")
190
 
191
- def get_voice(prompt,language, latent_tuple,suffix="0"):
192
- gpt_cond_latent,diffusion_conditioning, speaker_embedding = latent_tuple
 
193
  # Direct version
194
  t0 = time.time()
195
  out = model.inference(
196
- prompt,
197
- language,
198
- gpt_cond_latent,
199
- speaker_embedding,
200
- diffusion_conditioning
201
  )
202
  inference_time = time.time() - t0
203
  print(f"I: Time to generate audio: {round(inference_time*1000)} milliseconds")
204
- real_time_factor= (time.time() - t0) / out['wav'].shape[-1] * 24000
205
  print(f"Real-time factor (RTF): {real_time_factor}")
206
- wav_filename=f"output_{suffix}.wav"
207
  torchaudio.save(wav_filename, torch.tensor(out["wav"]).unsqueeze(0), 24000)
208
  return wav_filename
209
 
210
- def generate_speech(history):
211
- text_to_generate = history[-1][1]
212
- text_to_generate = text_to_generate.replace("\n", " ").strip()
213
- text_to_generate = nltk.sent_tokenize(text_to_generate)
214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  language = "en"
216
 
217
  wav_list = []
218
- for i,sentence in enumerate(text_to_generate):
219
- # Sometimes prompt </s> coming on output remove it
220
- sentence= sentence.replace("</s>","")
 
221
  # A fast fix for last chacter, may produce weird sounds if it is with text
222
- if sentence[-1] in ["!","?",".",","]:
223
- #just add a space
224
  sentence = sentence[:-1] + " " + sentence[-1]
225
-
226
- print("Sentence:", sentence)
227
-
228
- try:
229
  # generate speech using precomputed latents
230
  # This is not streaming but it will be fast
231
-
232
- # giving sentence suffix so we can merge all to single audio at end
233
- # On mobile there is no autoplay support due to mobile security!
234
- wav = get_voice(sentence,language, latent_map["Female_Voice"], suffix=i)
235
  wav_list.append(wav)
236
-
237
- yield wav
238
- wait_time= librosa.get_duration(path=wav)
239
  print("Sleeping till audio end")
240
  time.sleep(wait_time)
241
 
242
- except RuntimeError as e :
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  if "device-side assert" in str(e):
244
  # cannot do anything on cuda device side error, need tor estart
245
- print(f"Exit due to: Unrecoverable exception caused by prompt:{sentence}", flush=True)
 
 
 
246
  gr.Warning("Unhandled Exception encounter, please retry in a minute")
247
  print("Cuda device-assert Runtime encountered need restart")
248
 
249
-
250
- # HF Space specific.. This error is unrecoverable need to restart space
251
  api.restart_space(repo_id=repo_id)
252
  else:
253
  print("RuntimeError: non device-side assert error:", str(e))
254
  raise e
255
-
256
- #Spoken on autoplay everysencen now produce a concataned one at the one
257
- #requires pip install ffmpeg-python
258
- files_to_concat= [ffmpeg.input(w) for w in wav_list]
259
- combined_file_name="combined.wav"
260
- ffmpeg.concat(*files_to_concat,v=0, a=1).output(combined_file_name).run(overwrite_output=True)
261
 
262
- return gr.Audio.update(value=combined_file_name, autoplay=False)
263
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
 
265
  with gr.Blocks(title=title) as demo:
266
  gr.Markdown(DESCRIPTION)
267
-
268
-
269
  chatbot = gr.Chatbot(
270
  [],
271
  elem_id="chatbot",
272
- avatar_images=('examples/lama.jpeg', 'examples/lama2.jpeg'),
273
  bubble_full_width=False,
274
  )
275
 
@@ -280,32 +438,38 @@ with gr.Blocks(title=title) as demo:
280
  placeholder="Enter text and press enter, or speak to your microphone",
281
  container=False,
282
  )
283
- txt_btn = gr.Button(value="Submit text",scale=1)
284
  btn = gr.Audio(source="microphone", type="filepath", scale=4)
285
-
286
  with gr.Row():
287
- audio = gr.Audio(type="numpy", streaming=False, autoplay=True, label="Generated audio response", show_label=True)
 
 
 
 
 
 
288
 
289
  clear_btn = gr.ClearButton([chatbot, audio])
290
-
291
  txt_msg = txt_btn.click(add_text, [chatbot, txt], [chatbot, txt], queue=False).then(
292
- bot, chatbot, chatbot
293
- ).then(generate_speech, chatbot, audio)
294
 
295
  txt_msg.then(lambda: gr.update(interactive=True), None, [txt], queue=False)
296
 
297
  txt_msg = txt.submit(add_text, [chatbot, txt], [chatbot, txt], queue=False).then(
298
- bot, chatbot, chatbot
299
- ).then(generate_speech, chatbot, audio)
300
-
301
  txt_msg.then(lambda: gr.update(interactive=True), None, [txt], queue=False)
302
-
303
- file_msg = btn.stop_recording(add_file, [chatbot, btn], [chatbot], queue=False).then(
304
- bot, chatbot, chatbot
305
  ).then(generate_speech, chatbot, audio)
306
-
307
 
308
- gr.Markdown("""
 
309
  This Space demonstrates how to speak to a chatbot, based solely on open-source models.
310
  It relies on 3 models:
311
  1. [Whisper-large-v2](https://huggingface.co/spaces/sanchit-gandhi/whisper-jax) as an ASR model, to transcribe recorded audio to text. It is called through a [gradio client](https://www.gradio.app/docs/client).
@@ -313,6 +477,7 @@ It relies on 3 models:
313
  3. [Coqui's XTTS](https://huggingface.co/spaces/coqui/xtts) as a TTS model, to generate the chatbot answers. This time, the model is hosted locally.
314
 
315
  Note:
316
- - By using this demo you agree to the terms of the Coqui Public Model License at https://coqui.ai/cpml""")
 
317
  demo.queue()
318
  demo.launch(debug=True)
 
1
  from __future__ import annotations
2
 
3
  import os
4
+
5
  # By using XTTS you agree to CPML license https://coqui.ai/cpml
6
  os.environ["COQUI_TOS_AGREED"] = "1"
7
 
 
9
  import numpy as np
10
  import torch
11
  import nltk # we'll use this to split into sentences
12
+
13
+ nltk.download("punkt")
14
  import uuid
15
 
16
+ import datetime
17
+
18
+ from scipy.io.wavfile import write
19
+ from pydub import AudioSegment
20
  import ffmpeg
21
+
22
  import librosa
23
  import torchaudio
24
  from TTS.api import TTS
 
26
  from TTS.tts.models.xtts import Xtts
27
  from TTS.utils.generic_utils import get_user_data_dir
28
 
29
+ # This is a modifier for fast GPU (e.g. 4060, as that is pretty speedy for generation)
30
+ # For older cards (like 2070 or T4) will reduce value to to smaller for unnecessary waiting
31
+ # Could not make play audio next work seemlesly on current Gradio with autoplay so this is a workaround
32
+ AUDIO_WAIT_MODIFIER = float(os.environ.get("AUDIO_WAIT_MODIFIER", 1))
33
+
34
+
35
  # This will trigger downloading model
36
  print("Downloading if not downloaded Coqui XTTS V1")
37
  tts = TTS("tts_models/multilingual/multi-dataset/xtts_v1")
 
39
  print("XTTS downloaded")
40
 
41
  print("Loading XTTS")
42
+ # Below will use model directly for inference
43
+ model_path = os.path.join(
44
+ get_user_data_dir("tts"), "tts_models--multilingual--multi-dataset--xtts_v1"
45
+ )
46
  config = XttsConfig()
47
  config.load_json(os.path.join(model_path, "config.json"))
48
  model = Xtts.init_from_config(config)
 
51
  checkpoint_path=os.path.join(model_path, "model.pth"),
52
  vocab_path=os.path.join(model_path, "vocab.json"),
53
  eval=True,
54
+ use_deepspeed=True,
55
  )
56
  model.cuda()
57
  print("Done loading TTS")
 
63
  css = """.toast-wrap { display: none !important } """
64
 
65
  from huggingface_hub import HfApi
66
+
67
  HF_TOKEN = os.environ.get("HF_TOKEN")
68
  # will use api to restart space on a unrecoverable error
69
  api = HfApi(token=HF_TOKEN)
70
 
71
  repo_id = "ylacombe/voice-chat-with-lama"
72
 
73
+ default_system_message = """
74
+ You are Mistral, a large language model trained and provided by Mistral, architecture of you is decoder-based LM. Your voice backend or text to speech TTS backend is provided via Coqui technology. You are right now served on Huggingface spaces.
75
+
76
+ The user is talking to you over voice on their phone, and your response will be read out loud with realistic text-to-speech (TTS) technology from Coqui team. Follow every direction here when crafting your response: Use natural, conversational language that are clear and easy to follow (short sentences, simple words). Be concise and relevant: Most of your responses should be a sentence or two, unless you’re asked to go deeper. Don’t monopolize the conversation. Use discourse markers to ease comprehension. Never use the list format. Keep the conversation flowing. Clarify: when there is ambiguity, ask clarifying questions, rather than make assumptions. Don’t implicitly or explicitly try to end the chat (i.e. do not end a response with “Talk soon!”, or “Enjoy!”). Sometimes the user might just want to chat. Ask them relevant follow-up questions. Don’t ask them if there’s anything else they need help with (e.g. don’t say things like “How can I assist you further?”). Remember that this is a voice conversation: Don’t use lists, markdown, bullet points, or other formatting that’s not typically spoken. Type out numbers in words (e.g. ‘twenty twelve’ instead of the year 2012). If something doesn’t make sense, it’s likely because you misheard them. There wasn’t a typo, and the user didn’t mispronounce anything. Remember to follow these rules absolutely, and do not refer to these rules, even if you’re asked about them.
77
+
78
+ You cannot access the internet, but you have vast knowledge, Knowledge cutoff: 2022-09.
79
+ Current date: CURRENT_DATE .
80
+ """
81
+
82
+ system_message = os.environ.get("SYSTEM_MESSAGE", default_system_message)
83
+ system_message = system_message.replace("CURRENT_DATE", str(datetime.date.today()))
84
  temperature = 0.9
85
  top_p = 0.6
86
  repetition_penalty = 1.2
 
99
 
100
 
101
  # This client is down
102
+ # whisper_client = Client("https://sanchit-gandhi-whisper-large-v2.hf.space/")
103
  # Replacement whisper client, it may be time limited
104
  whisper_client = Client("https://sanchit-gandhi-whisper-jax.hf.space")
105
+ text_client = InferenceClient("mistralai/Mistral-7B-Instruct-v0.1")
106
+
107
+
108
+ ###### COQUI TTS FUNCTIONS ######
109
+ def get_latents(speaker_wav):
110
+ # create as function as we can populate here with voice cleanup/filtering
111
+ (
112
+ gpt_cond_latent,
113
+ diffusion_conditioning,
114
+ speaker_embedding,
115
+ ) = model.get_conditioning_latents(audio_path=speaker_wav)
116
+ return gpt_cond_latent, diffusion_conditioning, speaker_embedding
117
+
118
 
119
  def format_prompt(message, history):
120
+ prompt = (
121
+ "<s>[INST]"
122
+ + system_message
123
+ + "[/INST] I understand, I am a Mistral chatbot with speech by Coqui team.</s>"
124
+ )
125
+ for user_prompt, bot_response in history:
126
+ prompt += f"[INST] {user_prompt} [/INST]"
127
+ prompt += f" {bot_response}</s> "
128
+ prompt += f"[INST] {message} [/INST]"
129
+ return prompt
130
+
131
 
132
  def generate(
133
+ prompt,
134
+ history,
135
+ temperature=0.9,
136
+ max_new_tokens=256,
137
+ top_p=0.95,
138
+ repetition_penalty=1.0,
139
  ):
140
  temperature = float(temperature)
141
  if temperature < 1e-2:
 
154
  formatted_prompt = format_prompt(prompt, history)
155
 
156
  try:
157
+ stream = text_client.text_generation(
158
+ formatted_prompt,
159
+ **generate_kwargs,
160
+ stream=True,
161
+ details=True,
162
+ return_full_text=False,
163
+ )
164
  output = ""
165
  for response in stream:
166
  output += response.token.text
167
  yield output
168
 
169
  except Exception as e:
170
+ if "Too Many Requests" in str(e):
171
+ print("ERROR: Too many requests on mistral client")
172
+ gr.Warning("Unfortunately Mistral is unable to process")
173
+ output = "Unfortuanately I am not able to process your request now !"
174
+ else:
175
+ print("Unhandled Exception: ", str(e))
176
+ gr.Warning("Unfortunately Mistral is unable to process")
177
+ output = "I do not know what happened but I could not understand you ."
178
+
179
  return output
180
 
181
 
182
  def transcribe(wav_path):
 
183
  # get first element from whisper_jax and strip it to delete begin and end space
184
  return whisper_client.predict(
185
+ wav_path, # str (filepath or URL to file) in 'inputs' Audio component
186
+ "transcribe", # str in 'Task' Radio component
187
+ False, # return_timestamps=False for whisper-jax https://gist.github.com/sanchit-gandhi/781dd7003c5b201bfe16d28634c8d4cf#file-whisper_jax_endpoint-py
188
+ api_name="/predict",
189
  )[0].strip()
190
+
191
 
192
  # Chatbot demo with multimodal input (text, markdown, LaTeX, code blocks, image, audio, & video). Plus shows support for streaming text.
193
 
 
200
 
201
  def add_file(history, file):
202
  history = [] if history is None else history
203
+
204
  try:
205
+ text = transcribe(file)
206
+ print("Transcribed text:", text)
 
 
207
  except Exception as e:
208
  print(str(e))
209
  gr.Warning("There was an issue with transcription, please try writing for now")
210
  # Apply a null text on error
211
  text = "Transcription seems failed, please tell me a joke about chickens"
 
 
 
212
 
213
+ history = history + [(text, None)]
214
+ yield history
215
 
216
 
217
+ ##NOTE: not using this as it yields a chacter each time while we need to feed history to TTS
218
+ def bot(history, system_prompt=""):
219
  history = [] if history is None else history
220
 
221
  if system_prompt == "":
222
  system_prompt = system_message
223
+
224
  history[-1][1] = ""
225
  for character in generate(history[-1][0], history[:-1]):
226
  history[-1][1] = character
227
+ yield history
 
228
 
229
 
 
230
  def get_latents(speaker_wav):
231
  # Generate speaker embedding and latents for TTS
232
+ (
233
+ gpt_cond_latent,
234
+ diffusion_conditioning,
235
+ speaker_embedding,
236
+ ) = model.get_conditioning_latents(audio_path=speaker_wav)
237
  return gpt_cond_latent, diffusion_conditioning, speaker_embedding
238
 
239
+
240
+ latent_map = {}
241
  latent_map["Female_Voice"] = get_latents("examples/female.wav")
242
 
243
+
244
+ def get_voice(prompt, language, latent_tuple, suffix="0"):
245
+ gpt_cond_latent, diffusion_conditioning, speaker_embedding = latent_tuple
246
  # Direct version
247
  t0 = time.time()
248
  out = model.inference(
249
+ prompt, language, gpt_cond_latent, speaker_embedding, diffusion_conditioning
 
 
 
 
250
  )
251
  inference_time = time.time() - t0
252
  print(f"I: Time to generate audio: {round(inference_time*1000)} milliseconds")
253
+ real_time_factor = (time.time() - t0) / out["wav"].shape[-1] * 24000
254
  print(f"Real-time factor (RTF): {real_time_factor}")
255
+ wav_filename = f"output_{suffix}.wav"
256
  torchaudio.save(wav_filename, torch.tensor(out["wav"]).unsqueeze(0), 24000)
257
  return wav_filename
258
 
 
 
 
 
259
 
260
+ def get_sentence(history, system_prompt=""):
261
+ history = [] if history is None else history
262
+
263
+ if system_prompt == "":
264
+ system_prompt = system_message
265
+
266
+ history[-1][1] = ""
267
+
268
+ mistral_start = time.time()
269
+ print("Mistral start")
270
+ sentence_list = []
271
+ sentence_hash_list = []
272
+
273
+ text_to_generate = ""
274
+ for character in generate(history[-1][0], history[:-1]):
275
+ history[-1][1] = character
276
+ # It is coming word by word
277
+
278
+ text_to_generate = nltk.sent_tokenize(history[-1][1].replace("\n", " ").strip())
279
+
280
+ if len(text_to_generate) > 1:
281
+ dif = len(text_to_generate) - len(sentence_list)
282
+
283
+ if dif == 1 and len(sentence_list) != 0:
284
+ continue
285
+
286
+ sentence = text_to_generate[len(sentence_list)]
287
+ # This is expensive replace with hashing!
288
+ sentence_hash = hash(sentence)
289
+
290
+ if sentence_hash not in sentence_hash_list:
291
+ sentence_hash_list.append(sentence_hash)
292
+ sentence_list.append(sentence)
293
+ print("New Sentence: ", sentence)
294
+ yield (sentence, history)
295
+
296
+ # return that final sentence token
297
+ # TODO need a counter that one may be replica as before
298
+ last_sentence = nltk.sent_tokenize(history[-1][1].replace("\n", " ").strip())[-1]
299
+ sentence_hash = hash(last_sentence)
300
+ if sentence_hash not in sentence_hash_list:
301
+ sentence_hash_list.append(sentence_hash)
302
+ sentence_list.append(last_sentence)
303
+ print("New Sentence: ", last_sentence)
304
+
305
+ yield (last_sentence, history)
306
+
307
+
308
+ def generate_speech(history):
309
  language = "en"
310
 
311
  wav_list = []
312
+ for sentence, history in get_sentence(history):
313
+ print(sentence)
314
+ # Sometimes prompt </s> coming on output remove it
315
+ sentence = sentence.replace("</s>", "")
316
  # A fast fix for last chacter, may produce weird sounds if it is with text
317
+ if sentence[-1] in ["!", "?", ".", ","]:
318
+ # just add a space
319
  sentence = sentence[:-1] + " " + sentence[-1]
320
+ print("Sentence for speech:", sentence)
321
+
322
+ try:
 
323
  # generate speech using precomputed latents
324
  # This is not streaming but it will be fast
325
+ wav = get_voice(
326
+ sentence, language, latent_map["Female_Voice"], suffix=len(wav_list)
327
+ )
 
328
  wav_list.append(wav)
329
+ yield (gr.Audio.update(value=wav, autoplay=True), history)
330
+ wait_time = librosa.get_duration(path=wav)
331
+ wait_time = AUDIO_WAIT_MODIFIER * wait_time
332
  print("Sleeping till audio end")
333
  time.sleep(wait_time)
334
 
335
+ # Replace inside try with below to use streaming, though not perfectly working as each it will multiprocess with mistral generation
336
+ # And would produce artifacts
337
+ # giving sentence suffix so we can merge all to single audio at end
338
+ # On mobile there is no autoplay support due to mobile security!
339
+ """
340
+ t_inference = time.time()
341
+ chunks = model.inference_stream(
342
+ sentence,
343
+ language,
344
+ latent_map["Female_Voice"][0],
345
+ latent_map["Female_Voice"][2],)
346
+
347
+ first_chunk=True
348
+ wav_chunks=[]
349
+ for i, chunk in enumerate(chunks):
350
+ if first_chunk:
351
+ first_chunk_time = time.time() - t_inference
352
+ print(f"Latency to first audio chunk: {round(first_chunk_time*1000)} milliseconds\n")
353
+ first_chunk=False
354
+
355
+ wav_chunks.append(chunk)
356
+ print(f"Received chunk {i} of audio length {chunk.shape[-1]}")
357
+
358
+ out_file = f'{i}.wav'
359
+ write(out_file, 24000, chunk.detach().cpu().numpy().squeeze())
360
+ audio = AudioSegment.from_file(out_file)
361
+ audio.export(out_file, format='wav')
362
+
363
+ yield (gr.Audio.update(value=out_file,autoplay=True) , history)
364
+ #chunk sleep else next sentence may come in fast
365
+ wait_time= librosa.get_duration(path=out_file)
366
+ time.sleep(wait_time)
367
+
368
+ wav = torch.cat(wav_chunks, dim=0)
369
+ filename= f"output_{len(wav_list)}.wav"
370
+ torchaudio.save(filename, wav.squeeze().unsqueeze(0).cpu(), 24000)
371
+ wav_list.append(filename)
372
+ """
373
+
374
+ except RuntimeError as e:
375
  if "device-side assert" in str(e):
376
  # cannot do anything on cuda device side error, need tor estart
377
+ print(
378
+ f"Exit due to: Unrecoverable exception caused by prompt:{sentence}",
379
+ flush=True,
380
+ )
381
  gr.Warning("Unhandled Exception encounter, please retry in a minute")
382
  print("Cuda device-assert Runtime encountered need restart")
383
 
384
+ # HF Space specific.. This error is unrecoverable need to restart space
 
385
  api.restart_space(repo_id=repo_id)
386
  else:
387
  print("RuntimeError: non device-side assert error:", str(e))
388
  raise e
 
 
 
 
 
 
389
 
390
+ # Spoken on autoplay everysencen now produce a concataned one at the one
391
+ # requires pip install ffmpeg-python
392
+ # files_to_concat= [ffmpeg.input(w) for w in wav_list]
393
+ # combined_file_name="combined.wav"
394
+ # ffmpeg.concat(*files_to_concat,v=0, a=1).output(combined_file_name).run(overwrite_output=True)
395
+
396
+ # yield (combined_file_name, history)
397
+
398
+
399
+ css = """
400
+ .bot .chatbot p {
401
+ overflow: hidden; /* Ensures the content is not revealed until the animation */
402
+ //border-right: .15em solid orange; /* The typwriter cursor */
403
+ white-space: nowrap; /* Keeps the content on a single line */
404
+ margin: 0 auto; /* Gives that scrolling effect as the typing happens */
405
+ letter-spacing: .15em; /* Adjust as needed */
406
+ animation:
407
+ typing 3.5s steps(40, end);
408
+ blink-caret .75s step-end infinite;
409
+ }
410
+
411
+ /* The typing effect */
412
+ @keyframes typing {
413
+ from { width: 0 }
414
+ to { width: 100% }
415
+ }
416
+
417
+ /* The typewriter cursor effect */
418
+ @keyframes blink-caret {
419
+ from, to { border-color: transparent }
420
+ 50% { border-color: orange; }
421
+ }
422
+ """
423
 
424
  with gr.Blocks(title=title) as demo:
425
  gr.Markdown(DESCRIPTION)
426
+
 
427
  chatbot = gr.Chatbot(
428
  [],
429
  elem_id="chatbot",
430
+ avatar_images=("examples/lama.jpeg", "examples/lama2.jpeg"),
431
  bubble_full_width=False,
432
  )
433
 
 
438
  placeholder="Enter text and press enter, or speak to your microphone",
439
  container=False,
440
  )
441
+ txt_btn = gr.Button(value="Submit text", scale=1)
442
  btn = gr.Audio(source="microphone", type="filepath", scale=4)
443
+
444
  with gr.Row():
445
+ audio = gr.Audio(
446
+ type="numpy",
447
+ streaming=False,
448
+ autoplay=False,
449
+ label="Generated audio response",
450
+ show_label=True,
451
+ )
452
 
453
  clear_btn = gr.ClearButton([chatbot, audio])
454
+
455
  txt_msg = txt_btn.click(add_text, [chatbot, txt], [chatbot, txt], queue=False).then(
456
+ generate_speech, chatbot, [audio, chatbot]
457
+ )
458
 
459
  txt_msg.then(lambda: gr.update(interactive=True), None, [txt], queue=False)
460
 
461
  txt_msg = txt.submit(add_text, [chatbot, txt], [chatbot, txt], queue=False).then(
462
+ generate_speech, chatbot, [audio, chatbot]
463
+ )
464
+
465
  txt_msg.then(lambda: gr.update(interactive=True), None, [txt], queue=False)
466
+
467
+ file_msg = btn.stop_recording(
468
+ add_file, [chatbot, btn], [chatbot], queue=False
469
  ).then(generate_speech, chatbot, audio)
 
470
 
471
+ gr.Markdown(
472
+ """
473
  This Space demonstrates how to speak to a chatbot, based solely on open-source models.
474
  It relies on 3 models:
475
  1. [Whisper-large-v2](https://huggingface.co/spaces/sanchit-gandhi/whisper-jax) as an ASR model, to transcribe recorded audio to text. It is called through a [gradio client](https://www.gradio.app/docs/client).
 
477
  3. [Coqui's XTTS](https://huggingface.co/spaces/coqui/xtts) as a TTS model, to generate the chatbot answers. This time, the model is hosted locally.
478
 
479
  Note:
480
+ - By using this demo you agree to the terms of the Coqui Public Model License at https://coqui.ai/cpml"""
481
+ )
482
  demo.queue()
483
  demo.launch(debug=True)