allenpark commited on
Commit
19e86aa
·
1 Parent(s): b291649

fix: try markdown label text

Browse files
Files changed (1) hide show
  1. app.py +9 -13
app.py CHANGED
@@ -97,10 +97,6 @@ EXAMPLES_HEADER = """
97
  """
98
 
99
  css = """
100
- .custom_textbox {
101
- background-color: #fff !important;
102
- color: #000 !important;
103
- }
104
  .example-button {
105
  width: fit-content;
106
  font-size: 1rem;
@@ -177,20 +173,20 @@ with gr.Blocks(css=css, theme=theme) as demo:
177
  with gr.Row(equal_height=True):
178
  with gr.Column(scale=1):
179
  gr.Markdown("<div style='color: #fff !important; font-weight: 600'>Your Inputs</div>")
180
- model_output = gr.Textbox(label="MODEL OUTPUT (required)", elem_classes="custom_textbox")
181
- user_input = gr.Textbox(label="USER INPUT (required)", elem_classes="custom_textbox")
182
- gold_answer = gr.Textbox(label="GOLD ANSWER", elem_classes="custom_textbox")
183
- retrieved_context = gr.Textbox(label="RETRIEVED CONTEXT", elem_classes="custom_textbox")
184
- pass_criteria = gr.Textbox(label="Pass Criteria (required)", elem_classes="custom_textbox")
185
- rubric = gr.Textbox(label="Rubric", elem_classes="custom_textbox")
186
  with gr.Row():
187
  clear_btn = gr.ClearButton([model_output, user_input, gold_answer, retrieved_context, pass_criteria, rubric])
188
  submit_button = gr.Button("Submit", variant="primary")
189
  with gr.Column(scale=1):
190
  gr.Markdown("<div style='color: #fff !important; font-weight: 600'>GLIDER Output</div>")
191
- score = gr.Textbox(label="Score", elem_classes="custom_textbox")
192
- reasoning = gr.Textbox(label="Reasoning", elem_classes="custom_textbox")
193
- highlights = gr.Textbox(label="Highlights", elem_classes="custom_textbox")
194
  gr.Markdown("&nbsp;")
195
  gr.Markdown(EXAMPLES_HEADER)
196
  with gr.Row():
 
97
  """
98
 
99
  css = """
 
 
 
 
100
  .example-button {
101
  width: fit-content;
102
  font-size: 1rem;
 
173
  with gr.Row(equal_height=True):
174
  with gr.Column(scale=1):
175
  gr.Markdown("<div style='color: #fff !important; font-weight: 600'>Your Inputs</div>")
176
+ model_output = gr.Textbox(label="<span style='color: #fff !important'>MODEL OUTPUT (required)</span>")
177
+ user_input = gr.Textbox(label="<span style='color: #fff !important'>USER INPUT (required)</span>")
178
+ gold_answer = gr.Textbox(label="<span style='color: #fff !important'>GOLD ANSWER</span>")
179
+ retrieved_context = gr.Textbox(label="<span style='color: #fff !important'>RETRIEVED CONTEXT</span>")
180
+ pass_criteria = gr.Textbox(label="<span style='color: #fff !important'>Pass Criteria (required)</span>")
181
+ rubric = gr.Textbox(label="<span style='color: #fff !important'>Rubric</span>")
182
  with gr.Row():
183
  clear_btn = gr.ClearButton([model_output, user_input, gold_answer, retrieved_context, pass_criteria, rubric])
184
  submit_button = gr.Button("Submit", variant="primary")
185
  with gr.Column(scale=1):
186
  gr.Markdown("<div style='color: #fff !important; font-weight: 600'>GLIDER Output</div>")
187
+ score = gr.Textbox(label="<span style='color: #fff !important'>Score</span>")
188
+ reasoning = gr.Textbox(label="<span style='color: #fff !important'>Reasoning</span>")
189
+ highlights = gr.Textbox(label="<span style='color: #fff !important'>Highlights</span>")
190
  gr.Markdown("&nbsp;")
191
  gr.Markdown(EXAMPLES_HEADER)
192
  with gr.Row():