Update app.py
Browse files
app.py
CHANGED
@@ -26,11 +26,10 @@ def generate_text(question):
|
|
26 |
with gr.Blocks() as iface:
|
27 |
gr.Markdown(title)
|
28 |
gr.Markdown(description)
|
29 |
-
output = gr.Textbox(label="🦙LiteLlama")
|
30 |
with gr.Row():
|
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 |
-
|
34 |
submit_button.click(fn=generate_text, inputs=question, outputs=output)
|
35 |
|
36 |
iface.launch()
|
|
|
26 |
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()
|