aliabd HF staff commited on
Commit
d07cc59
1 Parent(s): b1495cb

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. README.md +7 -7
  2. requirements.txt +2 -0
  3. run.py +3 -0
README.md CHANGED
@@ -1,12 +1,12 @@
 
1
  ---
2
- title: Test 2 Main
3
- emoji: 📚
4
- colorFrom: purple
5
- colorTo: blue
6
  sdk: gradio
7
  sdk_version: 4.32.0
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: test_2_main
4
+ emoji: 🔥
5
+ colorFrom: indigo
6
+ colorTo: indigo
7
  sdk: gradio
8
  sdk_version: 4.32.0
9
+ app_file: run.py
10
  pinned: false
11
+ hf_oauth: true
12
  ---
 
 
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ gradio-client @ git+https://github.com/gradio-app/gradio@b67f7ff8f9d2fe06b306c6d852e638d471e01565#subdirectory=client/python
2
+ https://gradio-builds.s3.amazonaws.com/b67f7ff8f9d2fe06b306c6d852e638d471e01565/gradio-4.32.0-py3-none-any.whl
run.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ import gradio as gr
2
+
3
+ gr.Interface(lambda x:x, "text", "text").launch()