stefanches7 commited on
Commit
f2a8768
·
1 Parent(s): 0c0cec9

OpenAI key in a sep row, better descriptions for the fields

Browse files
Files changed (1) hide show
  1. gradio-ui.py +4 -3
gradio-ui.py CHANGED
@@ -394,14 +394,15 @@ with gr.Blocks(
394
  lines=1,
395
  type="password",
396
  )
 
397
  dataset_xml_input = gr.Textbox(
398
- label="Dataset XML",
399
- placeholder="Paste dataset_structure.xml content here (optional)",
400
  lines=8,
401
  )
402
  readme_input = gr.Textbox(
403
  label="README",
404
- placeholder="Paste README.md content here (optional)",
405
  lines=8,
406
  )
407
 
 
394
  lines=1,
395
  type="password",
396
  )
397
+ with gr.Row():
398
  dataset_xml_input = gr.Textbox(
399
+ label="Dataset tree structure",
400
+ placeholder="Paste tree structure of the dataset, preferably in XML format (optional)",
401
  lines=8,
402
  )
403
  readme_input = gr.Textbox(
404
  label="README",
405
+ placeholder="Paste relevant dataset description, and usage info if present (optional)",
406
  lines=8,
407
  )
408