Spaces:
Running
Running
Changed variable mapping
Browse files
app.py
CHANGED
@@ -342,13 +342,13 @@ with gr.Blocks(theme='default', css=CSS_STYLES) as demo:
|
|
342 |
label="Eval Prompt",
|
343 |
lines=1,
|
344 |
value=DEFAULT_EVAL_PROMPT,
|
345 |
-
placeholder="Type your eval prompt here... denote variables in {{curly brackets}}
|
346 |
show_label=True
|
347 |
)
|
348 |
|
349 |
# Right column - Variable Mapping
|
350 |
with gr.Column(scale=1):
|
351 |
-
gr.Markdown("###
|
352 |
# Create inputs for up to 5 variables, with first two visible by default
|
353 |
variable_rows = []
|
354 |
for i in range(5):
|
|
|
342 |
label="Eval Prompt",
|
343 |
lines=1,
|
344 |
value=DEFAULT_EVAL_PROMPT,
|
345 |
+
placeholder="Type your eval prompt here... denote input variables in {{curly brackets}}.",
|
346 |
show_label=True
|
347 |
)
|
348 |
|
349 |
# Right column - Variable Mapping
|
350 |
with gr.Column(scale=1):
|
351 |
+
gr.Markdown("### {{Input Variables}}")
|
352 |
# Create inputs for up to 5 variables, with first two visible by default
|
353 |
variable_rows = []
|
354 |
for i in range(5):
|