sanjeevbora commited on
Commit
02deb0d
·
verified ·
1 Parent(s): 1fe37bd
Files changed (1) hide show
  1. app.py +19 -20
app.py CHANGED
@@ -175,25 +175,24 @@ with gr.Blocks() as interface:
175
  # Login button to simulate the login process
176
  login_button = gr.Button("Login")
177
 
178
- if login_button:
179
- # Components for chat (initially hidden)
180
- input_box = gr.Textbox(label="Enter your question", placeholder="Type your question here...", visible=False)
181
- submit_btn = gr.Button("Submit", visible=False)
182
- chat_history = gr.Chatbot(label="Chat History", visible=False)
183
-
184
- # Handle login button click
185
- login_button.click(
186
- login_user,
187
- inputs=[],
188
- outputs=[login_button], # You can also update the UI to show login status
189
- queue=False
190
- ).then(
191
- lambda token: check_login(is_logged_in(token)),
192
- inputs=[],
193
- outputs=[input_box, submit_btn]
194
- )
195
-
196
- # Input submission and chat handling
197
- submit_btn.click(chat, inputs=[input_box, chat_history], outputs=[chat_history, input_box])
198
 
199
  interface.launch()
 
175
  # Login button to simulate the login process
176
  login_button = gr.Button("Login")
177
 
178
+ # Components for chat (initially hidden)
179
+ input_box = gr.Textbox(label="Enter your question", placeholder="Type your question here...", visible=False)
180
+ submit_btn = gr.Button("Submit", visible=False)
181
+ chat_history = gr.Chatbot(label="Chat History", visible=False)
182
+
183
+ # Handle login button click
184
+ login_button.click(
185
+ login_user,
186
+ inputs=[],
187
+ outputs=[login_button], # You can also update the UI to show login status
188
+ queue=False
189
+ ).then(
190
+ lambda token: check_login(is_logged_in(token)),
191
+ inputs=[],
192
+ outputs=[input_box, submit_btn]
193
+ )
194
+
195
+ # Input submission and chat handling
196
+ submit_btn.click(chat, inputs=[input_box, chat_history], outputs=[chat_history, input_box])
 
197
 
198
  interface.launch()