Spaces:
Runtime error
Runtime error
Upload with huggingface_hub
Browse files- README.md +5 -6
- requirements.txt +1 -0
- run.py +19 -0
README.md
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: 🔥
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 3.6
|
| 8 |
-
app_file:
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
-
|
| 12 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
+
|
| 2 |
---
|
| 3 |
+
title: blocks_essay_update_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,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def change_textbox(choice):
|
| 4 |
+
if choice == "short":
|
| 5 |
+
return gr.update(lines=2, visible=True, value="Short story: ")
|
| 6 |
+
elif choice == "long":
|
| 7 |
+
return gr.update(lines=8, visible=True, value="Long story...")
|
| 8 |
+
else:
|
| 9 |
+
return gr.update(visible=False)
|
| 10 |
+
|
| 11 |
+
with gr.Blocks() as demo:
|
| 12 |
+
radio = gr.Radio(
|
| 13 |
+
["short", "long", "none"], label="Essay Length to Write?"
|
| 14 |
+
)
|
| 15 |
+
text = gr.Textbox(lines=2, interactive=True)
|
| 16 |
+
radio.change(fn=change_textbox, inputs=radio, outputs=text)
|
| 17 |
+
|
| 18 |
+
if __name__ == "__main__":
|
| 19 |
+
demo.launch()
|