Moibe commited on
Commit
120ba68
·
1 Parent(s): 7341912

venv and gitignore

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. app.py +11 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ /venv/
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ def greet(name):
5
+ #tokens = bafta()
6
+
7
+ return "Tervetuloa " + name + "!!"
8
+
9
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
10
+
11
+ iface.launch()