prompt text box with label
Browse files
app.py
CHANGED
@@ -79,7 +79,9 @@ with gr.Blocks() as iface:
|
|
79 |
)
|
80 |
|
81 |
with gr.Row():
|
82 |
-
input_prompt = gr.Textbox(
|
|
|
|
|
83 |
|
84 |
with gr.Row():
|
85 |
generate_button = gr.Button("Generate Blog Post", size="sm")
|
|
|
79 |
)
|
80 |
|
81 |
with gr.Row():
|
82 |
+
input_prompt = gr.Textbox(
|
83 |
+
label="Input Prompt", lines=2, placeholder="Enter your blog post topic..."
|
84 |
+
)
|
85 |
|
86 |
with gr.Row():
|
87 |
generate_button = gr.Button("Generate Blog Post", size="sm")
|