Commit ·
9a7a2a3
1
Parent(s): 7ff4caf
debugging for app gradio verilog display issues 2
Browse files
app.py
CHANGED
|
@@ -279,11 +279,11 @@ with gr.Blocks(title="DeepRAG for RTL (Model-Agnostic)") as demo:
|
|
| 279 |
# fixing
|
| 280 |
with gr.Column(scale=3):
|
| 281 |
gr.Markdown("**Output**")
|
| 282 |
-
out_code = gr.
|
| 283 |
label="Generated Verilog (copy-ready)",
|
| 284 |
-
|
| 285 |
interactive=False,
|
| 286 |
-
|
| 287 |
)
|
| 288 |
with gr.Tab("Retrieved Items (names + scores)"):
|
| 289 |
retrieved_list = gr.Textbox(
|
|
|
|
| 279 |
# fixing
|
| 280 |
with gr.Column(scale=3):
|
| 281 |
gr.Markdown("**Output**")
|
| 282 |
+
out_code = gr.Textbox(
|
| 283 |
label="Generated Verilog (copy-ready)",
|
| 284 |
+
lines=28,
|
| 285 |
interactive=False,
|
| 286 |
+
placeholder="// Your Verilog code will appear here"
|
| 287 |
)
|
| 288 |
with gr.Tab("Retrieved Items (names + scores)"):
|
| 289 |
retrieved_list = gr.Textbox(
|