Janoah commited on
Commit
329a69c
·
1 Parent(s): 58ed99e

Changed input scentence & readme

Browse files
Files changed (2) hide show
  1. README.md +3 -0
  2. app.py +1 -1
README.md CHANGED
@@ -10,3 +10,6 @@ pinned: false
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
13
+
14
+
15
+ # COMMAND FOR STARTING LOCAL ENVIRONMENT -> "python app.py"
app.py CHANGED
@@ -1,7 +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()
 
1
  import gradio as gr
2
 
3
  def greet(name):
4
+ return "Yeeeep " + name + "!!"
5
 
6
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
  iface.launch()