Spaces:
Runtime error
Runtime error
Commit
·
236dd28
1
Parent(s):
f08d17a
Create app.py
Browse files
app.py
CHANGED
@@ -110,3 +110,10 @@ with gr.Blocks() as demo:
|
|
110 |
if __name__ == "__main__":
|
111 |
demo.launch(
|
112 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
if __name__ == "__main__":
|
111 |
demo.launch(
|
112 |
)
|
113 |
+
|
114 |
+
def greet(name):
|
115 |
+
return "Hello " + name + "!!"
|
116 |
+
|
117 |
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
118 |
+
demo.launch()
|
119 |
+
>>>>>>> Create app.py
|