Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -14,8 +14,9 @@ headers = {
|
|
14 |
ASSISTANT_PIC_PATH = "https://huggingface.co/spaces/PLRMB/P-MSQ-API-PREVIEW/resolve/main/API.png"
|
15 |
USER_PIC_PATH = "https://huggingface.co/spaces/PLRMB/P-MSQ-API-PREVIEW/resolve/main/usr.png"
|
16 |
|
17 |
-
def authorize(api_key):
|
18 |
test_data = {
|
|
|
19 |
"key": api_key
|
20 |
}
|
21 |
test_headers = {
|
@@ -125,7 +126,8 @@ with gr.Blocks(css=".chatbox {height: 400px; overflow-y: auto; border: 1px solid
|
|
125 |
with gr.Column(visible=True) as auth_view:
|
126 |
gr.Markdown("## P-MSQ Authorization")
|
127 |
gr.Markdown("P-MSQ is in closed alpha test! The model, api and more are subject to change. Even though the space is public, P-MSQ is restricted for public use, available for testers.")
|
128 |
-
|
|
|
129 |
auth_button = gr.Button("Authorize")
|
130 |
|
131 |
with gr.Column(visible=False) as chat_view:
|
@@ -182,13 +184,15 @@ with gr.Blocks(css=".chatbox {height: 400px; overflow-y: auto; border: 1px solid
|
|
182 |
inputs=[history_state, last_message_state, system_message, max_tokens, top_p, temperature],
|
183 |
outputs=[chatbot_output, history_state])
|
184 |
|
185 |
-
def authorize_and_proceed(api_key):
|
186 |
-
if authorize(api_key):
|
187 |
return gr.update(visible=False), gr.update(visible=True)
|
188 |
else:
|
189 |
return gr.update(visible=True), gr.update(visible=False)
|
190 |
|
191 |
-
auth_button.click(authorize_and_proceed, inputs=api_key_input, outputs=[auth_view, chat_view])
|
192 |
|
193 |
if __name__ == "__main__":
|
|
|
|
|
194 |
demo.launch()
|
|
|
14 |
ASSISTANT_PIC_PATH = "https://huggingface.co/spaces/PLRMB/P-MSQ-API-PREVIEW/resolve/main/API.png"
|
15 |
USER_PIC_PATH = "https://huggingface.co/spaces/PLRMB/P-MSQ-API-PREVIEW/resolve/main/usr.png"
|
16 |
|
17 |
+
def authorize(user, api_key):
|
18 |
test_data = {
|
19 |
+
"user": user,
|
20 |
"key": api_key
|
21 |
}
|
22 |
test_headers = {
|
|
|
126 |
with gr.Column(visible=True) as auth_view:
|
127 |
gr.Markdown("## P-MSQ Authorization")
|
128 |
gr.Markdown("P-MSQ is in closed alpha test! The model, api and more are subject to change. Even though the space is public, P-MSQ is restricted for public use, available for testers.")
|
129 |
+
api_user_input = gr.Textbox(placeholder="snowflake", label="UserID")
|
130 |
+
api_key_input = gr.Textbox(placeholder="Enter your API key", label="Token")
|
131 |
auth_button = gr.Button("Authorize")
|
132 |
|
133 |
with gr.Column(visible=False) as chat_view:
|
|
|
184 |
inputs=[history_state, last_message_state, system_message, max_tokens, top_p, temperature],
|
185 |
outputs=[chatbot_output, history_state])
|
186 |
|
187 |
+
def authorize_and_proceed(user, api_key):
|
188 |
+
if authorize(user, api_key):
|
189 |
return gr.update(visible=False), gr.update(visible=True)
|
190 |
else:
|
191 |
return gr.update(visible=True), gr.update(visible=False)
|
192 |
|
193 |
+
auth_button.click(authorize_and_proceed, inputs=[api_user_input, api_key_input], outputs=[auth_view, chat_view])
|
194 |
|
195 |
if __name__ == "__main__":
|
196 |
+
demo.queue = False
|
197 |
+
demo.config["queue"] = False
|
198 |
demo.launch()
|