Update app.py
Browse files
app.py
CHANGED
@@ -161,8 +161,10 @@ with gr.Blocks(theme=gr.themes.Default(), css=css) as demo:
|
|
161 |
gr.Markdown('<span style="font-size:180px;">🤔</span>')
|
162 |
|
163 |
with gr.Group():
|
164 |
-
|
165 |
-
|
|
|
|
|
166 |
with gr.Group():
|
167 |
original_prompt_raw = gr.Textbox(value='Should I eat cake or vegetables?', container=True, label='Original Prompt')
|
168 |
original_prompt_btn = gr.Button('Compute', variant='primary')
|
|
|
161 |
gr.Markdown('<span style="font-size:180px;">🤔</span>')
|
162 |
|
163 |
with gr.Group():
|
164 |
+
with gr.Row():
|
165 |
+
for txt in model_info.keys():
|
166 |
+
gr.Button(txt)
|
167 |
+
|
168 |
with gr.Group():
|
169 |
original_prompt_raw = gr.Textbox(value='Should I eat cake or vegetables?', container=True, label='Original Prompt')
|
170 |
original_prompt_btn = gr.Button('Compute', variant='primary')
|