lhj commited on
Commit
ef1a690
·
1 Parent(s): 24d9161
Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +7 -0
README.md CHANGED
@@ -10,4 +10,4 @@ pinned: false
10
  license: openrail
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
10
  license: openrail
11
  ---
12
 
13
+ Welcome to experience GmasterAI, an exquisite AI drawing application. New users will receive 10 free trial opportunities upon registration.Website: [https://www.gmaster.ai](https://www.gmaster.ai/)
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello " + name + "!!"
5
+
6
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+ iface.launch()