Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -11,9 +11,9 @@ zeitstempel_str = jetzt.strftime("%Y-%m-%d")
|
|
11 |
secreturl = os.environ.get('secret_url')
|
12 |
custom_css = """
|
13 |
#md {
|
14 |
-
height:
|
15 |
-
font-size:
|
16 |
-
background:
|
17 |
padding: 20px;
|
18 |
padding-top: 40px;
|
19 |
color: white;
|
@@ -83,7 +83,7 @@ def clear():
|
|
83 |
return "", "speed"
|
84 |
|
85 |
# Erstelle die Gradio-Schnittstelle
|
86 |
-
with gr.Blocks(css=custom_css
|
87 |
#gr.Markdown("# <br>")
|
88 |
links_output = gr.Markdown(label="Antwort", elem_id="md", value="")
|
89 |
ort_input = gr.Textbox(label="Frage", placeholder="ask anything...", scale=3, value="")
|
|
|
11 |
secreturl = os.environ.get('secret_url')
|
12 |
custom_css = """
|
13 |
#md {
|
14 |
+
height: 300px;
|
15 |
+
font-size: 35px;
|
16 |
+
background: black;
|
17 |
padding: 20px;
|
18 |
padding-top: 40px;
|
19 |
color: white;
|
|
|
83 |
return "", "speed"
|
84 |
|
85 |
# Erstelle die Gradio-Schnittstelle
|
86 |
+
with gr.Blocks(css=custom_css) as demo:
|
87 |
#gr.Markdown("# <br>")
|
88 |
links_output = gr.Markdown(label="Antwort", elem_id="md", value="")
|
89 |
ort_input = gr.Textbox(label="Frage", placeholder="ask anything...", scale=3, value="")
|