Tonic commited on
Commit
a23fe1b
·
1 Parent(s): bfcf4c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -27,9 +27,13 @@ with gr.Blocks() as iface:
27
  gr.Markdown(title)
28
  gr.Markdown(description)
29
  with gr.Row():
30
- question = gr.Textbox(label="Speak to LiteLlama", lines=2, placeholder="What are the best Japanese gardens in Paris?")
31
- submit_button = gr.Button("Submit")
32
- output = gr.Textbox(label="🦙LiteLlama")
 
 
 
33
  submit_button.click(fn=generate_text, inputs=question, outputs=output)
34
 
 
35
  iface.launch()
 
27
  gr.Markdown(title)
28
  gr.Markdown(description)
29
  with gr.Row():
30
+ with gr.Column():
31
+ question = gr.Textbox(label="Speak to LiteLlama", lines=2, placeholder="What are the best Japanese gardens in Paris?")
32
+ submit_button = gr.Button("Submit")
33
+ with gr.Column():
34
+ output = gr.Textbox(label="🦙LiteLlama", lines=6)
35
+
36
  submit_button.click(fn=generate_text, inputs=question, outputs=output)
37
 
38
+ # Launch the interface
39
  iface.launch()