Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -133,7 +133,7 @@ class GradioInterface:
|
|
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,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 |
-
|
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 |
-
|
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 |
|