Spaces:
Sleeping
Sleeping
Commit
·
b08f4a6
1
Parent(s):
97eed3e
Put the log last
Browse files
main.py
CHANGED
|
@@ -59,9 +59,9 @@ def create_demo():
|
|
| 59 |
run_btn = gr.Button("Run Type Inference", variant="primary")
|
| 60 |
|
| 61 |
with gr.Column():
|
| 62 |
-
log_output = gr.Textbox(label="Output Log", lines=10)
|
| 63 |
header_output = gr.Code(label="Generated Header (_gen.h)", language="c", lines=10)
|
| 64 |
fixed_output = gr.Code(label="Fixed C File (_fixed.c)", language="c", lines=10)
|
|
|
|
| 65 |
|
| 66 |
run_btn.click(
|
| 67 |
fn=run_psychec,
|
|
|
|
| 59 |
run_btn = gr.Button("Run Type Inference", variant="primary")
|
| 60 |
|
| 61 |
with gr.Column():
|
|
|
|
| 62 |
header_output = gr.Code(label="Generated Header (_gen.h)", language="c", lines=10)
|
| 63 |
fixed_output = gr.Code(label="Fixed C File (_fixed.c)", language="c", lines=10)
|
| 64 |
+
log_output = gr.Textbox(label="Output Log", lines=1)
|
| 65 |
|
| 66 |
run_btn.click(
|
| 67 |
fn=run_psychec,
|