Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -127,8 +127,9 @@ with gr.Blocks(theme='Taithrah/Minimal') as demo:
|
|
127 |
with gr.Column():
|
128 |
question = gr.Textbox(label="Celebrity Attributes", placeholder="Describe the celebrity you want")
|
129 |
gr.Markdown(placeholder)
|
130 |
-
answer = gr.Textbox(label="CelebrityFinder Response", placeholder="CelebrityFinder will respond here", interactive=False, lines=10)
|
131 |
submit_button = gr.Button("Submit")
|
|
|
|
|
132 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|
133 |
|
134 |
|
|
|
127 |
with gr.Column():
|
128 |
question = gr.Textbox(label="Celebrity Attributes", placeholder="Describe the celebrity you want")
|
129 |
gr.Markdown(placeholder)
|
|
|
130 |
submit_button = gr.Button("Submit")
|
131 |
+
gr.Markdown(placeholder)
|
132 |
+
answer = gr.Textbox(label="CelebrityFinder Response", placeholder="CelebrityFinder will respond here", interactive=False, lines=10)
|
133 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|
134 |
|
135 |
|