baconnier commited on
Commit
df60348
1 Parent(s): 0bc5467

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -143,12 +143,11 @@ class GradioInterface:
143
  label="Choose the Model to apply to the prompts (the one you will used)"
144
  )
145
  apply_button = gr.Button("Apply Prompts")
146
-
147
- with gr.Row():
148
- with gr.Column():
149
  gr.Markdown("### Original Prompt Output")
150
  original_output = gr.Markdown(label="Original Prompt Output")
151
- with gr.Column():
152
  gr.Markdown("### Refined Prompt Output")
153
  refined_output = gr.Markdown(label="Refined Prompt Output")
154
 
 
143
  label="Choose the Model to apply to the prompts (the one you will used)"
144
  )
145
  apply_button = gr.Button("Apply Prompts")
146
+
147
+ with gr.Tab("### Original Prompt"):
 
148
  gr.Markdown("### Original Prompt Output")
149
  original_output = gr.Markdown(label="Original Prompt Output")
150
+ with gr.Tab("### Refined Prompt"):
151
  gr.Markdown("### Refined Prompt Output")
152
  refined_output = gr.Markdown(label="Refined Prompt Output")
153