Spaces:
Paused
Paused
auth
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ import re
|
|
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,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 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
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 |
-
|
|
|
|
|
|
|
|
|
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 |
-
#
|
184 |
-
login_button
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
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()
|