Spaces:
Running
Running
zach
commited on
Commit
·
1cd9545
1
Parent(s):
e1f0703
Fix formatting in app.py
Browse files- src/app.py +3 -1
src/app.py
CHANGED
@@ -76,7 +76,9 @@ def generate_text(
|
|
76 |
|
77 |
|
78 |
def synthesize_speech(
|
79 |
-
character_description: str,
|
|
|
|
|
80 |
) -> Tuple[gr.update, gr.update, dict, str, ComparisonType, str, str, bool, str, str]:
|
81 |
"""
|
82 |
Synthesizes two text-to-speech outputs, updates UI state components, and returns additional TTS metadata.
|
|
|
76 |
|
77 |
|
78 |
def synthesize_speech(
|
79 |
+
character_description: str,
|
80 |
+
text: str,
|
81 |
+
generated_text_state: str,
|
82 |
) -> Tuple[gr.update, gr.update, dict, str, ComparisonType, str, str, bool, str, str]:
|
83 |
"""
|
84 |
Synthesizes two text-to-speech outputs, updates UI state components, and returns additional TTS metadata.
|