Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| def main(): | |
| with gr.Blocks() as demo: | |
| gr.Markdown( | |
| """ | |
| # Skill Graph | |
| This repo contains files related to Skill graph | |
| """ | |
| ) | |
| return demo | |
| if __name__ == "__main__": | |
| demo = main() | |
| demo.launch() | |