Update app.py
Browse files
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 |
|