RenAzum commited on
Commit
784b9d2
·
1 Parent(s): ddd5a47

Adding application file

Browse files
Files changed (2) hide show
  1. README.md +32 -4
  2. app.py +8 -0
README.md CHANGED
@@ -1,10 +1,38 @@
1
  ---
2
- title: README
3
  emoji: 🐢
4
- colorFrom: indigo
5
- colorTo: yellow
6
  sdk: gradio
7
- pinned: false
8
  ---
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  Edit this `README.md` markdown file to author your organization card.
 
1
  ---
2
+ title: RENESISTECH
3
  emoji: 🐢
4
+ colorFrom: blue
5
+ colorTo: purple
6
  sdk: gradio
7
+ pinned: True
8
  ---
9
 
10
+
11
+ # Your Organization Name
12
+
13
+ [Image of your organization's logo]
14
+
15
+ **Description:**
16
+ *Briefly explain what your organization does, its goals, and why it's important.*
17
+
18
+ **Website:**
19
+ *Link to your organization's website*
20
+
21
+ **Social Media:**
22
+ *Links to your organization's social media profiles (e.g., Twitter, LinkedIn)*
23
+
24
+ **Repositories:**
25
+ *Links to your organization's most important or popular repositories*
26
+
27
+ **Members:**
28
+ *List of your organization's members*
29
+
30
+ **Contact:**
31
+ *Email address or phone number*
32
+
33
+ **Organization Type:**
34
+ *Choose the appropriate organization type from Hugging Face's options*
35
+
36
+ **Featured Repositories:**
37
+ *List of your featured repositories (optional)*
38
  Edit this `README.md` markdown file to author your organization card.
app.py CHANGED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
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")
7
+
8
+ demo.launch()