Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -25,6 +25,9 @@ import gradio as gr
|
|
| 25 |
# Your string variable (replace with your actual content)
|
| 26 |
text = "Hello, Gradio!"
|
| 27 |
|
|
|
|
|
|
|
|
|
|
| 28 |
# Create a Gradio interface with a label
|
| 29 |
label = gr.Label(text)
|
| 30 |
|
|
|
|
| 25 |
# Your string variable (replace with your actual content)
|
| 26 |
text = "Hello, Gradio!"
|
| 27 |
|
| 28 |
+
|
| 29 |
+
input_text = gr.inputs.Textbox(lines=5, label="Enter Text:")
|
| 30 |
+
|
| 31 |
# Create a Gradio interface with a label
|
| 32 |
label = gr.Label(text)
|
| 33 |
|