Spaces:
Running
Running
Update app_tsukasa_remote.py
Browse files- app_tsukasa_remote.py +2 -2
app_tsukasa_remote.py
CHANGED
@@ -145,7 +145,7 @@ with gr.Blocks() as longform:
|
|
145 |
inp_longform = gr.Textbox(
|
146 |
label="Text",
|
147 |
info="Enter the text [Speaker: Text -> japanese or romaji both work, check the last example!] \n Also works without any names. ",
|
148 |
-
value=list(example_texts.values())[
|
149 |
interactive=True,
|
150 |
scale=5
|
151 |
)
|
@@ -154,7 +154,7 @@ with gr.Blocks() as longform:
|
|
154 |
example_dropdown = gr.Dropdown(
|
155 |
choices=list(example_texts.keys()),
|
156 |
label="Example Texts [pick one!]",
|
157 |
-
value=list(example_texts.keys())[
|
158 |
interactive=True
|
159 |
)
|
160 |
|
|
|
145 |
inp_longform = gr.Textbox(
|
146 |
label="Text",
|
147 |
info="Enter the text [Speaker: Text -> japanese or romaji both work, check the last example!] \n Also works without any names. ",
|
148 |
+
value=list(example_texts.values())[0],
|
149 |
interactive=True,
|
150 |
scale=5
|
151 |
)
|
|
|
154 |
example_dropdown = gr.Dropdown(
|
155 |
choices=list(example_texts.keys()),
|
156 |
label="Example Texts [pick one!]",
|
157 |
+
value=list(example_texts.keys())[0],
|
158 |
interactive=True
|
159 |
)
|
160 |
|