Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -102,8 +102,9 @@ def clear():
|
|
102 |
return clear
|
103 |
|
104 |
# Erstelle die Gradio-Schnittstelle
|
105 |
-
|
106 |
-
|
|
|
107 |
links_output = gr.Markdown(label="Antwort",elem_id="md")
|
108 |
ort_input = gr.Textbox(label="Frage", placeholder="ask anything...", scale= 3, value="")
|
109 |
#clearbutton = gr.Button("clear", elem_id="clear")
|
|
|
102 |
return clear
|
103 |
|
104 |
# Erstelle die Gradio-Schnittstelle
|
105 |
+
(theme=gr.themes.Default(font=[gr.themes.GoogleFont("Inconsolata"), "Arial", "sans-serif"]))
|
106 |
+
with gr.Blocks(css=custom_css, theme = gr.themes.Default(font=[gr.themes.GoogleFont("Inconsolata"), "Arial", "sans-serif"])) as demo:
|
107 |
+
gr.Markdown("# Perplexica WebSearch <br>")
|
108 |
links_output = gr.Markdown(label="Antwort",elem_id="md")
|
109 |
ort_input = gr.Textbox(label="Frage", placeholder="ask anything...", scale= 3, value="")
|
110 |
#clearbutton = gr.Button("clear", elem_id="clear")
|