sanjeevbora commited on
Commit
ebc3d73
·
verified ·
1 Parent(s): e7a70e6
Files changed (1) hide show
  1. app.py +22 -30
app.py CHANGED
@@ -22,7 +22,7 @@ import re
22
  import transformers
23
  import spaces
24
  import requests
25
- from urllib.parse import urlencode, urlparse, parse_qs
26
 
27
  # Initialize embeddings and ChromaDB
28
  model_name = "sentence-transformers/all-mpnet-base-v2"
@@ -120,16 +120,13 @@ def exchange_code_for_token(auth_code):
120
  }
121
 
122
  response = requests.post(TOKEN_URL, data=data)
 
123
  if response.status_code == 200:
124
  token_data = response.json()
125
- return token_data.get('access_token')
126
- return None
127
-
128
- def handle_redirect(auth_code):
129
- token = exchange_code_for_token(auth_code)
130
- if token:
131
- return True # Successful login
132
- return False # Failed login
133
 
134
  def login_user(auth_code):
135
  # Exchange the authorization code for an access token
@@ -168,39 +165,34 @@ def chat(query, history=None):
168
  def clear_input():
169
  return "", # Return empty string to clear input field
170
 
171
- # Gradio interface
172
  with gr.Blocks() as interface:
173
  gr.Markdown("## RAG Chatbot")
174
  gr.Markdown("Please log in to continue.")
175
 
176
- login_status = gr.Textbox(label="Login Status", visible=False)
 
 
 
 
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
- # Button for login
184
- login_button = gr.Button("Click here to login with Microsoft")
185
-
186
- # Handle the login button click
187
- login_button.click(lambda: gr.update(visible=False), inputs=[], outputs=[login_button])
188
-
189
- # Function to handle the redirect
190
- def on_redirect(url):
191
- # Extract the authorization code from the URL
192
- parsed_url = urlparse(url)
193
- query_params = parse_qs(parsed_url.query)
194
- auth_code = query_params.get('code')
195
-
196
- if auth_code:
197
- if handle_redirect(auth_code[0]): # Pass the first code if there are multiple
198
- return gr.update(visible=True), gr.update(visible=True), gr.update(visible=True)
199
- else:
200
- return gr.update(value="Login failed."), # Show failure message
201
 
202
  # Input submission and chat handling
203
  submit_btn.click(chat, inputs=[input_box, chat_history], outputs=[chat_history, input_box])
204
 
205
- # Add an event listener to check for redirects in the Gradio interface (this might require running an additional server)
206
  interface.launch()
 
22
  import transformers
23
  import spaces
24
  import requests
25
+ from urllib.parse import urlencode
26
 
27
  # Initialize embeddings and ChromaDB
28
  model_name = "sentence-transformers/all-mpnet-base-v2"
 
120
  }
121
 
122
  response = requests.post(TOKEN_URL, data=data)
123
+
124
  if response.status_code == 200:
125
  token_data = response.json()
126
+ access_token = token_data.get('access_token')
127
+ return access_token
128
+ else:
129
+ return None
 
 
 
 
130
 
131
  def login_user(auth_code):
132
  # Exchange the authorization code for an access token
 
165
  def clear_input():
166
  return "", # Return empty string to clear input field
167
 
 
168
  with gr.Blocks() as interface:
169
  gr.Markdown("## RAG Chatbot")
170
  gr.Markdown("Please log in to continue.")
171
 
172
+ # Custom HTML to show login link
173
+ login_link = gr.HTML(f'<a href="{login_url}" target="_blank">Click here to login with Microsoft</a>')
174
+
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()