Spaces:
Runtime error
Runtime error
Set table width
Browse files
app.py
CHANGED
|
@@ -460,13 +460,13 @@ Este space es parte de un proyecto de investigaci贸n para estudiar c贸mo el cono
|
|
| 460 |
|
| 461 |
with gr.Blocks(fill_height=False) as data:
|
| 462 |
gr.Markdown("## GPT4")
|
| 463 |
-
gr.DataFrame(fetch_gpt, every=gr.Timer(60))
|
| 464 |
gr.Markdown("## Llama 3")
|
| 465 |
-
gr.DataFrame(fetch_llama, every=gr.Timer(60))
|
| 466 |
gr.Markdown("## GPT4.1")
|
| 467 |
-
gr.DataFrame(fetch_gpt_2, every=gr.Timer(60))
|
| 468 |
gr.Markdown("## Claude")
|
| 469 |
-
gr.DataFrame(fetch_claude, every=gr.Timer(60))
|
| 470 |
|
| 471 |
if __name__ == "__main__":
|
| 472 |
gr.set_static_paths(paths=[os.path.join(os.path.dirname(__file__), "static")])
|
|
|
|
| 460 |
|
| 461 |
with gr.Blocks(fill_height=False) as data:
|
| 462 |
gr.Markdown("## GPT4")
|
| 463 |
+
gr.DataFrame(fetch_gpt, every=gr.Timer(60), column_widths=["50%", "50%"])
|
| 464 |
gr.Markdown("## Llama 3")
|
| 465 |
+
gr.DataFrame(fetch_llama, every=gr.Timer(60), column_widths=["50%", "50%"])
|
| 466 |
gr.Markdown("## GPT4.1")
|
| 467 |
+
gr.DataFrame(fetch_gpt_2, every=gr.Timer(60), column_widths=["50%", "50%"])
|
| 468 |
gr.Markdown("## Claude")
|
| 469 |
+
gr.DataFrame(fetch_claude, every=gr.Timer(60), column_widths=["50%", "50%"])
|
| 470 |
|
| 471 |
if __name__ == "__main__":
|
| 472 |
gr.set_static_paths(paths=[os.path.join(os.path.dirname(__file__), "static")])
|