Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -202,7 +202,7 @@ def main():
|
|
202 |
|
203 |
|
204 |
with gr.Row():
|
205 |
-
output1 = gr.Textbox(label="Model 1 Response"
|
206 |
output2 = gr.Textbox(label="Model 2 Response")
|
207 |
|
208 |
# Place this at the end of the App tab setup
|
@@ -232,20 +232,6 @@ def main():
|
|
232 |
outputs=[output1, output2, prompt_display]
|
233 |
)
|
234 |
|
235 |
-
custom_css = """
|
236 |
-
.highlight-textbox {
|
237 |
-
border-color: #FFD700; /* Set border color to gold */
|
238 |
-
box-shadow: 0 0 5px #FFD700; /* Add gold shadow */
|
239 |
-
}
|
240 |
-
|
241 |
-
.highlight-button {
|
242 |
-
background-color: #FFD700; /* Set background color to gold */
|
243 |
-
color: black; /* Set text color to black */
|
244 |
-
font-weight: bold; /* Make text bold */
|
245 |
-
}
|
246 |
-
"""
|
247 |
-
demo.css(custom_css)
|
248 |
-
|
249 |
demo.launch()
|
250 |
|
251 |
if __name__ == "__main__":
|
|
|
202 |
|
203 |
|
204 |
with gr.Row():
|
205 |
+
output1 = gr.Textbox(label="Model 1 Response")
|
206 |
output2 = gr.Textbox(label="Model 2 Response")
|
207 |
|
208 |
# Place this at the end of the App tab setup
|
|
|
232 |
outputs=[output1, output2, prompt_display]
|
233 |
)
|
234 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
235 |
demo.launch()
|
236 |
|
237 |
if __name__ == "__main__":
|