Update app.py
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ with gr.Blocks() as demo:
|
|
60 |
model_selection.change(fn=llm_intro, inputs=model_selection, outputs=explanation)
|
61 |
|
62 |
chatbot = gr.Chatbot()
|
63 |
-
input_text = gr.Textbox(lines=
|
64 |
# output_text = gr.Textbox(lines=10, label="Generated Text")
|
65 |
clear = gr.ClearButton([input_text, chatbot])
|
66 |
|
|
|
60 |
model_selection.change(fn=llm_intro, inputs=model_selection, outputs=explanation)
|
61 |
|
62 |
chatbot = gr.Chatbot()
|
63 |
+
input_text = gr.Textbox(lines=3, label="Input Text")
|
64 |
# output_text = gr.Textbox(lines=10, label="Generated Text")
|
65 |
clear = gr.ClearButton([input_text, chatbot])
|
66 |
|