aliabd HF staff commited on
Commit
4d793d1
·
1 Parent(s): a00a9e3

Upload with huggingface_hub

Browse files
Files changed (3) hide show
  1. README.md +6 -7
  2. requirements.txt +1 -0
  3. run.py +18 -0
README.md CHANGED
@@ -1,12 +1,11 @@
 
1
  ---
2
- title: No Input Main
3
- emoji: 😻
4
- colorFrom: pink
5
- colorTo: pink
6
  sdk: gradio
7
  sdk_version: 3.6
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
  ---
3
+ title: no_input_main
4
+ emoji: 🔥
5
+ colorFrom: indigo
6
+ colorTo: indigo
7
  sdk: gradio
8
  sdk_version: 3.6
9
+ app_file: run.py
10
  pinned: false
11
  ---
 
 
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ https://gradio-main-build.s3.amazonaws.com/c3bec6153737855510542e8154391f328ac72606/gradio-3.6-py3-none-any.whl
run.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import random
3
+
4
+ sentence_list = [
5
+ "Good morning!",
6
+ "Prayers are with you, have a safe day!",
7
+ "I love you!"
8
+ ]
9
+
10
+
11
+ def random_sentence():
12
+ return sentence_list[random.randint(0, 2)]
13
+
14
+
15
+ demo = gr.Interface(fn=random_sentence, inputs=None, outputs="text")
16
+
17
+ if __name__ == "__main__":
18
+ demo.launch()