Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -81,7 +81,7 @@ with gr.Blocks() as demo:
|
|
81 |
)
|
82 |
|
83 |
with gr.Row():
|
84 |
-
txt = gr.Textbox(scale=4, show_label=False, placeholder="Select Question", container=False, interactive=
|
85 |
btn = gr.Button("Submit")
|
86 |
|
87 |
btn.click(fn=generate_response, inputs=[txt], outputs=chatbot)
|
|
|
81 |
)
|
82 |
|
83 |
with gr.Row():
|
84 |
+
txt = gr.Textbox(scale=4, show_label=False, placeholder="Select Question", container=False, interactive=False) # Adjust based on need
|
85 |
btn = gr.Button("Submit")
|
86 |
|
87 |
btn.click(fn=generate_response, inputs=[txt], outputs=chatbot)
|