adamf9898 commited on
Commit
7fec44f
β€’
1 Parent(s): c0d291e

initial commit

Browse files
Files changed (3) hide show
  1. README.md +7 -7
  2. app.py +11 -0
  3. requirements.txt +0 -0
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: AutoTrain Advanced
3
  emoji: πŸš€
4
  colorFrom: blue
5
  colorTo: green
@@ -9,13 +9,13 @@ short_description: Create powerful AI models without code
9
  hf_oauth: true
10
  hf_oauth_expiration_minutes: 36000
11
  hf_oauth_scopes:
12
- - read-repos
13
- - write-repos
14
- - manage-repos
15
- - inference-api
16
- - read-billing
17
  tags:
18
- - autotrain
19
  ---
20
 
21
  # Docs
 
1
  ---
2
+ title: New Space
3
  emoji: πŸš€
4
  colorFrom: blue
5
  colorTo: green
 
9
  hf_oauth: true
10
  hf_oauth_expiration_minutes: 36000
11
  hf_oauth_scopes:
12
+ - read-repos
13
+ - write-repos
14
+ - manage-repos
15
+ - inference-api
16
+ - read-billing
17
  tags:
18
+ - autotrain
19
  ---
20
 
21
  # Docs
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ def greet(name):
5
+ return "Hello " + name + "!"
6
+
7
+
8
+ demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
9
+
10
+ if __name__ == "__main__":
11
+ demo.launch()
requirements.txt ADDED
File without changes