Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ custom_css = """
|
|
12 |
height: 350px; font-size:28px;
|
13 |
}
|
14 |
#senden {
|
15 |
-
width: 200px;
|
16 |
}
|
17 |
#clear {
|
18 |
width: 200px; float:right;
|
@@ -104,9 +104,9 @@ with gr.Blocks(css=custom_css, theme = gr.themes.Soft()) as demo:
|
|
104 |
ort_input = gr.Textbox(label="Frage", placeholder="ask anything...", value="")
|
105 |
links_output = gr.Markdown(label="Antwort",elem_id="md")
|
106 |
#clearbutton = gr.Button("clear", elem_id="clear")
|
107 |
-
|
108 |
with gr.Row():
|
109 |
-
|
110 |
|
111 |
button.click(fn=parse_links, inputs=ort_input, outputs=links_output)
|
112 |
#clearbutton.click(fn=clear, inputs=[], outputs=links_output)
|
|
|
12 |
height: 350px; font-size:28px;
|
13 |
}
|
14 |
#senden {
|
15 |
+
width: 200px; float:right;
|
16 |
}
|
17 |
#clear {
|
18 |
width: 200px; float:right;
|
|
|
104 |
ort_input = gr.Textbox(label="Frage", placeholder="ask anything...", value="")
|
105 |
links_output = gr.Markdown(label="Antwort",elem_id="md")
|
106 |
#clearbutton = gr.Button("clear", elem_id="clear")
|
107 |
+
button = gr.Button("senden", elem_id="senden")
|
108 |
with gr.Row():
|
109 |
+
|
110 |
|
111 |
button.click(fn=parse_links, inputs=ort_input, outputs=links_output)
|
112 |
#clearbutton.click(fn=clear, inputs=[], outputs=links_output)
|