Spaces:
Runtime error
Runtime error
pwilczewski
commited on
Commit
·
4eff4df
1
Parent(s):
9472e7b
Testing app
Browse files
app.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# -*- coding: utf-8 -*-
|
2 |
+
"""
|
3 |
+
Created on Tue Jan 24 18:17:06 2023
|
4 |
+
|
5 |
+
@author: Paul
|
6 |
+
"""
|
7 |
+
|
8 |
+
import gradio as gr
|
9 |
+
|
10 |
+
def greet(name):
|
11 |
+
return "Hello " + name + "!!"
|
12 |
+
|
13 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
14 |
+
iface.launch()
|
15 |
+
|