Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -23,17 +23,16 @@ def create_tabs_header(topic, description, references):
|
|
23 |
with gr.Row():
|
24 |
with gr.Column(scale=4):
|
25 |
reference_list = "> " + "\n> ".join(references)
|
26 |
-
content
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
"""
|
31 |
# gr.Markdown(f"""
|
32 |
# ## {topic}
|
33 |
# ### {description}
|
34 |
# {reference_list}
|
35 |
# """)
|
36 |
-
|
37 |
with gr.Column(scale=1):
|
38 |
test_pipeline_button = gr.Button(value="Process")
|
39 |
return test_pipeline_button
|
|
|
23 |
with gr.Row():
|
24 |
with gr.Column(scale=4):
|
25 |
reference_list = "> " + "\n> ".join(references)
|
26 |
+
content = f"## {topic}"
|
27 |
+
content += f"### {description}"
|
28 |
+
content += reference_list
|
29 |
+
gr.Markdown(content)
|
|
|
30 |
# gr.Markdown(f"""
|
31 |
# ## {topic}
|
32 |
# ### {description}
|
33 |
# {reference_list}
|
34 |
# """)
|
35 |
+
|
36 |
with gr.Column(scale=1):
|
37 |
test_pipeline_button = gr.Button(value="Process")
|
38 |
return test_pipeline_button
|