baconnier commited on
Commit
9221c91
1 Parent(s): 4f7cecf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -133,7 +133,7 @@ class GradioInterface:
133
  box-shadow: none !important;
134
  }
135
 
136
- .title-container::before { content: 'PROMPT++'; }
137
  .input-container::before { content: 'PROMPT REFINEMENT'; }
138
  .analysis-container::before { content: 'ANALYSIS & REFINEMENT'; }
139
  .model-container::before { content: 'MODEL APPLICATION'; }
@@ -159,7 +159,7 @@ class GradioInterface:
159
  with gr.Column(elem_classes=["container", "input-container"]):
160
  prompt_text = gr.Textbox(
161
  label="Type the prompt (or let it empty to see metaprompt)",
162
- elem_classes="no-background"
163
  )
164
  with gr.Accordion("Meta Prompt explanation", open=False):
165
  gr.Markdown(explanation_markdown)
@@ -167,7 +167,7 @@ class GradioInterface:
167
  ["star","done","physics","morphosis", "verse", "phor","bolism","math","arpe"],
168
  label="Choose Meta Prompt",
169
  value="star",
170
- elem_classes=["no-background", "radio-group"]
171
  )
172
  refine_button = gr.Button("Refine Prompt")
173
 
 
133
  box-shadow: none !important;
134
  }
135
 
136
+ .title-container::before { content: ''; }
137
  .input-container::before { content: 'PROMPT REFINEMENT'; }
138
  .analysis-container::before { content: 'ANALYSIS & REFINEMENT'; }
139
  .model-container::before { content: 'MODEL APPLICATION'; }
 
159
  with gr.Column(elem_classes=["container", "input-container"]):
160
  prompt_text = gr.Textbox(
161
  label="Type the prompt (or let it empty to see metaprompt)",
162
+ # elem_classes="no-background"
163
  )
164
  with gr.Accordion("Meta Prompt explanation", open=False):
165
  gr.Markdown(explanation_markdown)
 
167
  ["star","done","physics","morphosis", "verse", "phor","bolism","math","arpe"],
168
  label="Choose Meta Prompt",
169
  value="star",
170
+ # elem_classes=["no-background", "radio-group"]
171
  )
172
  refine_button = gr.Button("Refine Prompt")
173