abdulsamad commited on
Commit
c9de3a1
·
verified ·
1 Parent(s): a0925c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
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