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