Codeblockz commited on
Commit
60422fe
·
verified ·
1 Parent(s): 724788e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -11,7 +11,7 @@ from fastrtc import (
11
  ReplyOnPause,
12
  Stream,
13
  get_tts_model,
14
- get_twilio_turn_credentials,
15
  )
16
  from gradio.utils import get_space
17
  from groq import Groq
@@ -21,7 +21,7 @@ load_dotenv()
21
  groq_client = Groq()
22
  tts_client = get_tts_model()
23
  stt_model = get_stt_model()
24
-
25
 
26
  # See "Talk to Claude" in Cookbook for an example of how to keep
27
  # track of the chat history.
@@ -62,6 +62,7 @@ stream = Stream(
62
  modality="audio",
63
  mode="send-receive",
64
  handler=ReplyOnPause(response, input_sample_rate=16000),
 
65
  additional_outputs_handler=lambda a, b: b,
66
  additional_inputs=[chatbot],
67
  additional_outputs=[chatbot],
 
11
  ReplyOnPause,
12
  Stream,
13
  get_tts_model,
14
+ get_hf_turn_credentials,
15
  )
16
  from gradio.utils import get_space
17
  from groq import Groq
 
21
  groq_client = Groq()
22
  tts_client = get_tts_model()
23
  stt_model = get_stt_model()
24
+ credentials = get_hf_turn_credentials(token=None)
25
 
26
  # See "Talk to Claude" in Cookbook for an example of how to keep
27
  # track of the chat history.
 
62
  modality="audio",
63
  mode="send-receive",
64
  handler=ReplyOnPause(response, input_sample_rate=16000),
65
+ rtc_configuration=credentials,
66
  additional_outputs_handler=lambda a, b: b,
67
  additional_inputs=[chatbot],
68
  additional_outputs=[chatbot],