gospacedev commited on
Commit
459d896
1 Parent(s): 3721320

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -76,6 +76,8 @@ def transcribe(audio):
76
  audio_response = gTTS(llm_response)
77
  audio_response.save("response.mp3")
78
 
 
 
79
  # Return the full conversation history
80
  return "response.mp3", formatted_history
81
 
 
76
  audio_response = gTTS(llm_response)
77
  audio_response.save("response.mp3")
78
 
79
+ print("Formatted History: ", formatted_history)
80
+
81
  # Return the full conversation history
82
  return "response.mp3", formatted_history
83