removed string passed into button press
Browse files
app.py
CHANGED
|
@@ -31,7 +31,7 @@ with gr.Blocks() as demo:
|
|
| 31 |
text_out1 = gr.Textbox(label = "Description")
|
| 32 |
text_out2 = gr.Textbox(label = "Backstory")
|
| 33 |
btn.click(fn = char_description,inputs = text_in, outputs = [text_out1, text_out2])
|
| 34 |
-
rand.click(fn = char_description,inputs =
|
| 35 |
|
| 36 |
|
| 37 |
with gr.Column(scale = 0):
|
|
|
|
| 31 |
text_out1 = gr.Textbox(label = "Description")
|
| 32 |
text_out2 = gr.Textbox(label = "Backstory")
|
| 33 |
btn.click(fn = char_description,inputs = text_in, outputs = [text_out1, text_out2])
|
| 34 |
+
rand.click(fn = char_description,inputs = text_in, outputs = [text_out1, text_out2])
|
| 35 |
|
| 36 |
|
| 37 |
with gr.Column(scale = 0):
|