Spaces:
Build error
Build error
update
Browse files
app.py
CHANGED
@@ -155,6 +155,7 @@ with gr.Blocks(css="#chatbot {overflow: auto; height:500px;}") as demo:
|
|
155 |
show_label=False,
|
156 |
lines=1,
|
157 |
type="password",
|
|
|
158 |
)
|
159 |
with gr.Column(scale=0.2):
|
160 |
enter_apikey = gr.Button("🔑Enter")
|
@@ -164,7 +165,10 @@ with gr.Blocks(css="#chatbot {overflow: auto; height:500px;}") as demo:
|
|
164 |
|
165 |
with gr.Row(visible=False) as input_raws:
|
166 |
with gr.Column(scale=0.7):
|
167 |
-
txt = gr.Textbox(show_label=False,
|
|
|
|
|
|
|
168 |
with gr.Column(scale=0.10, min_width=0):
|
169 |
run = gr.Button("🏃♂️Run")
|
170 |
with gr.Column(scale=0.10, min_width=0):
|
|
|
155 |
show_label=False,
|
156 |
lines=1,
|
157 |
type="password",
|
158 |
+
info="Step 1: Paste your OpenAI API key here and press Enter↵️"
|
159 |
)
|
160 |
with gr.Column(scale=0.2):
|
161 |
enter_apikey = gr.Button("🔑Enter")
|
|
|
165 |
|
166 |
with gr.Row(visible=False) as input_raws:
|
167 |
with gr.Column(scale=0.7):
|
168 |
+
txt = gr.Textbox(show_label=False,
|
169 |
+
placeholder="Enter text and press enter, or upload an image",
|
170 |
+
info="Step 2: Type a prompt to generate an image and press Enter↵️, or upload an initial image. Example prompt- Generate a figure of a cat running in the garden"
|
171 |
+
).style(container=False)
|
172 |
with gr.Column(scale=0.10, min_width=0):
|
173 |
run = gr.Button("🏃♂️Run")
|
174 |
with gr.Column(scale=0.10, min_width=0):
|