lhj
commited on
Commit
·
ef1a690
1
Parent(s):
24d9161
init
Browse files
README.md
CHANGED
@@ -10,4 +10,4 @@ pinned: false
|
|
10 |
license: openrail
|
11 |
---
|
12 |
|
13 |
-
|
|
|
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()
|