Pragnakal commited on
Commit
0f744d9
·
verified ·
1 Parent(s): 524b29a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -27,6 +27,7 @@ def generate_response(user_input):
27
 
28
  # Function to process the audio input and return both text and audio response
29
  def respond(audio_input):
 
30
  user_input = transcribe_audio(audio_input)
31
  text_response, output_path = generate_response(user_input)
32
 
 
27
 
28
  # Function to process the audio input and return both text and audio response
29
  def respond(audio_input):
30
+ print(audio_input)
31
  user_input = transcribe_audio(audio_input)
32
  text_response, output_path = generate_response(user_input)
33