Remove commented-out llm_output generation code and add print statement for debugging.
Browse files
app.py
CHANGED
|
@@ -655,6 +655,17 @@ def generate_audio(
|
|
| 655 |
edited_transcript=edited_transcript_processed,
|
| 656 |
user_feedback=user_feedback_processed
|
| 657 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 658 |
|
| 659 |
# Generate audio from the transcript
|
| 660 |
audio = b""
|
|
|
|
| 655 |
edited_transcript=edited_transcript_processed,
|
| 656 |
user_feedback=user_feedback_processed
|
| 657 |
)
|
| 658 |
+
# llm_output = generate_dialogue(
|
| 659 |
+
# '本ガイドブックは、政府情報システム開発におけるアジャイル開発の適用を支援するために用意されたものです。',
|
| 660 |
+
# intro_instructions='',
|
| 661 |
+
# text_instructions='',
|
| 662 |
+
# scratch_pad_instructions='',
|
| 663 |
+
# prelude_dialog='',
|
| 664 |
+
# podcast_dialog_instructions='',
|
| 665 |
+
# edited_transcript='',
|
| 666 |
+
# user_feedback=''
|
| 667 |
+
# )
|
| 668 |
+
print('llm_output:', llm_output)
|
| 669 |
|
| 670 |
# Generate audio from the transcript
|
| 671 |
audio = b""
|