crodri commited on
Commit
9a032e9
1 Parent(s): 856686a

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -7
README.md CHANGED
@@ -1,13 +1,42 @@
1
  ---
2
- title: Squacdemo
3
- emoji:
4
- colorFrom: green
5
- colorTo: pink
6
  sdk: gradio
7
- sdk_version: 3.3
8
  app_file: app.py
9
  pinned: false
10
- license: cc0-1.0
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: QA en la Wikipedia mediante SQUAC
3
+ emoji: 🦀
4
+ colorFrom: blue
5
+ colorTo: grey
6
  sdk: gradio
7
+ sdk_version: 3.0.10
8
  app_file: app.py
9
  pinned: false
10
+ license: osl-3.0
11
  ---
12
 
13
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces#reference
14
+
15
+
16
+ # Configuration
17
+
18
+ `title`: _string_
19
+ Display title for the Space
20
+
21
+ `emoji`: _string_
22
+ Space emoji (emoji-only character allowed)
23
+
24
+ `colorFrom`: _string_
25
+ Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray)
26
+
27
+ `colorTo`: _string_
28
+ Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray)
29
+
30
+ `sdk`: _string_
31
+ Can be either `gradio` or `streamlit`
32
+
33
+ `sdk_version` : _string_
34
+ Only applicable for `streamlit` SDK.
35
+ See [doc](https://hf.co/docs/hub/spaces) for more info on supported versions.
36
+
37
+ `app_file`: _string_
38
+ Path to your main application file (which contains either `gradio` or `streamlit` Python code).
39
+ Path is relative to the root of the repository.
40
+
41
+ `pinned`: _boolean_
42
+ Whether the Space stays on top of your list.