Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -102,7 +102,9 @@ def respond(message, api_key, max_tokens, top_p, temperature):
|
|
102 |
return history, "Error: " + response.json().get("error", "Unknown error occurred.")
|
103 |
|
104 |
def render_message(history):
|
105 |
-
messages_html = ""
|
|
|
|
|
106 |
|
107 |
for user_message, assistant_message, user_profile, assistant_profile, user_pic, assistant_pic in history:
|
108 |
if user_message:
|
@@ -117,27 +119,13 @@ def render_message(history):
|
|
117 |
messages_html += f"<img src='{assistant_pic}' style='width: 40px; height: 40px; border-radius: 50%; margin-right: 10px;'>"
|
118 |
messages_html += f"{assistant_message}</div><br>"
|
119 |
|
|
|
120 |
return messages_html
|
121 |
|
122 |
-
def append_new_message(new_message):
|
123 |
-
return f"""
|
124 |
-
<script>
|
125 |
-
var chatbox = document.getElementById('messages');
|
126 |
-
chatbox.innerHTML += `{new_message}`;
|
127 |
-
var chatboxContainer = document.getElementById('chatbox-container');
|
128 |
-
chatboxContainer.scrollTop = chatboxContainer.scrollHeight;
|
129 |
-
</script>
|
130 |
-
"""
|
131 |
|
|
|
132 |
|
133 |
-
with gr.
|
134 |
-
|
135 |
-
with gr.Column():
|
136 |
-
chatbot_output = gr.HTML(elem_id="chatbox-container", value="""
|
137 |
-
<div id="chatbox-container" class="chatbox" style="height: 400px; overflow-y: auto; border: 1px solid #262626; padding: 10px; background-color: #171717;">
|
138 |
-
<div id="messages"></div>
|
139 |
-
</div>
|
140 |
-
""")
|
141 |
gr.Markdown("## P-MSQ Authorization")
|
142 |
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.")
|
143 |
api_user_input = gr.Textbox(placeholder="snowflake", label="UserID", type='email')
|
@@ -206,10 +194,10 @@ with gr.Blocks() as demo:
|
|
206 |
if authorize(user, api_key, PRIMARY_SYSTEM_INSTRUCTIONS):
|
207 |
gr.Info("Loading, please wait.")
|
208 |
messages_html, history = load_conversation(api_key)
|
209 |
-
return
|
210 |
else:
|
211 |
gr.Warning("Incorrect userid/token")
|
212 |
-
return
|
213 |
|
214 |
def save_custom_instructions(api_key, custom_instructions):
|
215 |
if api_key in sessions:
|
@@ -221,15 +209,10 @@ with gr.Blocks() as demo:
|
|
221 |
return "Session not found.", gr.update(value="")
|
222 |
|
223 |
|
224 |
-
auth_button.click(authorize_and_proceed,
|
225 |
-
|
226 |
-
outputs=[auth_status, chat_view, chatbot_output, history_state])
|
227 |
-
save_instructions_btn.click(save_custom_instructions,
|
228 |
-
inputs=[api_key_input, system_instructions_input],
|
229 |
-
outputs=auth_status)
|
230 |
|
231 |
|
232 |
if __name__ == "__main__":
|
233 |
demo.queue = False
|
234 |
-
demo.
|
235 |
-
demo.launch()
|
|
|
102 |
return history, "Error: " + response.json().get("error", "Unknown error occurred.")
|
103 |
|
104 |
def render_message(history):
|
105 |
+
messages_html = """
|
106 |
+
<div id="chatbox-container" class="chatbox">
|
107 |
+
<div id="messages">"""
|
108 |
|
109 |
for user_message, assistant_message, user_profile, assistant_profile, user_pic, assistant_pic in history:
|
110 |
if user_message:
|
|
|
119 |
messages_html += f"<img src='{assistant_pic}' style='width: 40px; height: 40px; border-radius: 50%; margin-right: 10px;'>"
|
120 |
messages_html += f"{assistant_message}</div><br>"
|
121 |
|
122 |
+
|
123 |
return messages_html
|
124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
|
126 |
+
with gr.Blocks(css=".chatbox {height: 400px; overflow-y: auto; border: 1px solid #262626; padding: 10px; background-color: #171717;}") as demo:
|
127 |
|
128 |
+
with gr.Column(visible=True) as auth_view:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
gr.Markdown("## P-MSQ Authorization")
|
130 |
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.")
|
131 |
api_user_input = gr.Textbox(placeholder="snowflake", label="UserID", type='email')
|
|
|
194 |
if authorize(user, api_key, PRIMARY_SYSTEM_INSTRUCTIONS):
|
195 |
gr.Info("Loading, please wait.")
|
196 |
messages_html, history = load_conversation(api_key)
|
197 |
+
return gr.update(visible=False), gr.update(visible=True), messages_html, history
|
198 |
else:
|
199 |
gr.Warning("Incorrect userid/token")
|
200 |
+
return gr.update(visible=True), gr.update(visible=False), auth_status.update(value="Invalid userid/token")
|
201 |
|
202 |
def save_custom_instructions(api_key, custom_instructions):
|
203 |
if api_key in sessions:
|
|
|
209 |
return "Session not found.", gr.update(value="")
|
210 |
|
211 |
|
212 |
+
auth_button.click(authorize_and_proceed, inputs=[api_user_input, api_key_input], outputs=[auth_view, chat_view, chatbot_output, history_state])
|
213 |
+
save_instructions_btn.click(save_custom_instructions, inputs=[api_key_input, system_instructions_input], outputs=auth_status)
|
|
|
|
|
|
|
|
|
214 |
|
215 |
|
216 |
if __name__ == "__main__":
|
217 |
demo.queue = False
|
218 |
+
demo.launch()
|
|