mgokg commited on
Commit
4a56b61
·
verified ·
1 Parent(s): fdf599f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -8,7 +8,7 @@ import os
8
  secreturl = os.environ.get('secret_url')
9
 
10
  custom_css = """
11
- .links_output {
12
  height: 500px; /* Setze die Höhe auf 100 Pixel */
13
  }
14
  """
@@ -93,7 +93,7 @@ def clear():
93
  return clear
94
 
95
  # Erstelle die Gradio-Schnittstelle
96
- with gr.Blocks(css=".links_output {height: 500px; overflow: auto; }") as demo:
97
  gr.Markdown("# Perplexica WebSearch")
98
  ort_input = gr.Textbox(label="Frage", placeholder="ask anything...", value="")
99
  links_output = gr.Markdown(label="Antwort",elem_id=".outputs {height: 500px; overflow: auto; }")
 
8
  secreturl = os.environ.get('secret_url')
9
 
10
  custom_css = """
11
+ .output {
12
  height: 500px; /* Setze die Höhe auf 100 Pixel */
13
  }
14
  """
 
93
  return clear
94
 
95
  # Erstelle die Gradio-Schnittstelle
96
+ with gr.Blocks(css=custom_css) as demo:
97
  gr.Markdown("# Perplexica WebSearch")
98
  ort_input = gr.Textbox(label="Frage", placeholder="ask anything...", value="")
99
  links_output = gr.Markdown(label="Antwort",elem_id=".outputs {height: 500px; overflow: auto; }")