aidn commited on
Commit
17907d4
·
verified ·
1 Parent(s): b524b0c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -18
app.py CHANGED
@@ -154,28 +154,17 @@ v_theme = gr.themes.Soft(
154
 
155
  with gr.Blocks() as demo:
156
 
157
- with gr.Row():
158
- with gr.Column(scale=1):
159
- gr.Markdown("")
160
- with gr.Column(scale=3):
161
- gr.Image(
162
- value="banner.png",
163
- show_label=False,
164
- interactive=False,
165
- container=False,
166
- height=200,
167
- width="auto",
168
- elem_classes="banner-center"
169
- )
170
- with gr.Column(scale=1):
171
- gr.Markdown("")
172
-
173
- gr.HTML("<div style='text-align: center; margin-bottom: 2rem;'><p style='color: #4B5563; font-size: 1.1rem;'>AI-Driven Multi-Agent Consensus System</p></div>")
174
 
175
  with gr.Row():
176
  with gr.Column(scale=4):
177
  input_text = gr.Textbox(
178
- label="Benutzerauftrag / Thema",
179
  placeholder="z.B. 'Vergleiche Kubeflow vs ZenML' oder 'Schreibe einen LinkedIn Post über KI-Regulierung'",
180
  lines=2
181
  )
 
154
 
155
  with gr.Blocks() as demo:
156
 
157
+ gr.HTML("""
158
+ <div style="text-align: center; margin-bottom: 2rem; margin-top: 1rem;">
159
+ <h1 style="color: #FF5A4D; font-weight: 900; font-size: 2.8rem; margin-bottom: 0.2rem; font-family: 'Inter', sans-serif; letter-spacing: -0.02em;">PromptPlenum42</h1>
160
+ <p style="color: #4B5563; font-size: 1.1rem; font-family: 'Inter', sans-serif;">AI-Driven Multi-Agent Consensus System</p>
161
+ </div>
162
+ """)
 
 
 
 
 
 
 
 
 
 
 
163
 
164
  with gr.Row():
165
  with gr.Column(scale=4):
166
  input_text = gr.Textbox(
167
+ label="Plenumsauftrag",
168
  placeholder="z.B. 'Vergleiche Kubeflow vs ZenML' oder 'Schreibe einen LinkedIn Post über KI-Regulierung'",
169
  lines=2
170
  )