Pavankalyan commited on
Commit
a0679f4
·
verified ·
1 Parent(s): 938db1f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -0
app.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def main():
4
+ with gr.Blocks() as demo:
5
+ gr.Markdown(
6
+ """
7
+ # Skill Graph
8
+ This repo contains files related to Skill graph
9
+ """
10
+ )
11
+ return demo
12
+
13
+ if __name__ == "__main__":
14
+ demo = main()
15
+ demo.launch()