Adding lines to text area
Browse files
app.py
CHANGED
@@ -266,7 +266,7 @@ with gr.Blocks() as demo:
|
|
266 |
gr.Markdown(recipesMsg)
|
267 |
|
268 |
with gr.Column():
|
269 |
-
out = gr.TextArea(label="ReAct Answer", placeholder="The answer will go here...")
|
270 |
|
271 |
btn.click(fn=ask_query, inputs=[modelDD, openAIKey, inp, accessCG], outputs=out)
|
272 |
|
|
|
266 |
gr.Markdown(recipesMsg)
|
267 |
|
268 |
with gr.Column():
|
269 |
+
out = gr.TextArea(label="ReAct Answer", placeholder="The answer will go here...", lines=50))
|
270 |
|
271 |
btn.click(fn=ask_query, inputs=[modelDD, openAIKey, inp, accessCG], outputs=out)
|
272 |
|