David Tang
setup repo
92b019e
raw
history blame contribute delete
309 Bytes
import gradio as gr
with gr.Blocks(title="Technical Documentation") as tabs_issue:
with gr.Column():
gr.Markdown("""
# Technical Documentation
This was first discovered in the huggingface MCP hackathon.
""")
if __name__ == "__main__":
tabs_issue.launch()