Update app.py
Browse files
app.py
CHANGED
|
@@ -53,16 +53,15 @@ with gr.Blocks(theme=gr.themes.Soft()) as operand:
|
|
| 53 |
with gr.Tab("Source"):
|
| 54 |
|
| 55 |
gr.Markdown("## Source")
|
| 56 |
-
|
| 57 |
-
with gr.Accordion("Syntax"):
|
| 58 |
-
gr.Markdown("<br>data_source my-ds-name1 my-ds-desc1 my-jira-endpoint1 my-jira-creds1")
|
| 59 |
-
|
| 60 |
gr.Markdown("Instances of data sources e.g., Jira Cloud endpoint, Trello endpoint, Github endpoint")
|
| 61 |
|
| 62 |
textbox_a = gr.Textbox(label='Command')
|
| 63 |
output_a = gr.Textbox(label='Output')
|
| 64 |
button_a = gr.Button("Submit")
|
| 65 |
button_a.click(process_command, inputs=[textbox_a], outputs=output_a)
|
|
|
|
|
|
|
|
|
|
| 66 |
|
| 67 |
with gr.Tab("Set"):
|
| 68 |
gr.Markdown("## Data Set")
|
|
|
|
| 53 |
with gr.Tab("Source"):
|
| 54 |
|
| 55 |
gr.Markdown("## Source")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
gr.Markdown("Instances of data sources e.g., Jira Cloud endpoint, Trello endpoint, Github endpoint")
|
| 57 |
|
| 58 |
textbox_a = gr.Textbox(label='Command')
|
| 59 |
output_a = gr.Textbox(label='Output')
|
| 60 |
button_a = gr.Button("Submit")
|
| 61 |
button_a.click(process_command, inputs=[textbox_a], outputs=output_a)
|
| 62 |
+
|
| 63 |
+
with gr.Accordion("Syntax"):
|
| 64 |
+
gr.Markdown("<br>data_source my-ds-name1 my-ds-desc1 my-jira-endpoint1 my-jira-creds1")
|
| 65 |
|
| 66 |
with gr.Tab("Set"):
|
| 67 |
gr.Markdown("## Data Set")
|