sidashu commited on
Commit
6e2d842
1 Parent(s): 6c34ece

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +2 -8
  2. app.py +10 -0
README.md CHANGED
@@ -1,12 +1,6 @@
1
  ---
2
- title: Gradio Showcase
3
- emoji: 🏢
4
- colorFrom: purple
5
- colorTo: green
6
  sdk: gradio
7
  sdk_version: 3.41.2
8
- app_file: app.py
9
- pinned: false
10
  ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: gradio-showcase
3
+ app_file: app.py
 
 
4
  sdk: gradio
5
  sdk_version: 3.41.2
 
 
6
  ---
 
 
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello " + name + "!"
5
+
6
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text",theme=gr.themes.Monochrome())
7
+
8
+ demo.launch()
9
+
10
+