Alp commited on
Commit
4af7226
·
1 Parent(s): a8e48d3

logs optional

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -1251,14 +1251,14 @@ with gr.Blocks(title=APP_CONTENT["title"]) as demo:
1251
  datatype=["markdown", "number", "number", "str"],
1252
  )
1253
 
1254
- gr.Markdown("## Logs")
1255
- log_textbox = gr.Textbox(
1256
- label="Search Logs",
1257
- lines=10,
1258
- max_lines=20,
1259
- interactive=False,
1260
- placeholder="Logs will appear here...",
1261
- )
1262
 
1263
  # About section with full content
1264
  with gr.Accordion("About this tool", open=False):
 
1251
  datatype=["markdown", "number", "number", "str"],
1252
  )
1253
 
1254
+ with gr.Accordion("Logs", open=False):
1255
+ log_textbox = gr.Textbox(
1256
+ label="Search Logs",
1257
+ lines=10,
1258
+ max_lines=20,
1259
+ interactive=False,
1260
+ placeholder="Logs will appear here...",
1261
+ )
1262
 
1263
  # About section with full content
1264
  with gr.Accordion("About this tool", open=False):