Spaces:
Running
Running
File size: 15,095 Bytes
eefa003 f6b99ca 9497fc8 31bd9a2 9497fc8 31bd9a2 36ae3fb 2ce979c f6b99ca eefa003 78f63db f6b99ca 4d9f591 f6b99ca 78f63db 0bb4279 eefa003 78f63db eefa003 0d67078 f6b99ca 2ce979c f6b99ca 0bb4279 0d67078 78f63db 0d67078 2ce979c 78f63db 0d67078 83c1cfa 0d67078 2ce979c 0d67078 9497fc8 0bb4279 eefa003 ddbdc31 0bb4279 eefa003 0d67078 0bb4279 f6b99ca 0bb4279 f6b99ca 2ce979c f6b99ca 0bb4279 2ce979c 0bb4279 2ce979c 31bd9a2 1ed1b11 0bb4279 5761cb7 0bb4279 31bd9a2 0bb4279 2ce979c 0d67078 0bb4279 2ce979c 78f63db 9e185d2 0bb4279 2ce979c 0bb4279 2ce979c 0bb4279 2ce979c 0bb4279 2ce979c f6b99ca 0bb4279 f6b99ca 2ce979c f6b99ca 2ce979c 0bb4279 9e185d2 0d67078 0bb4279 9e185d2 0bb4279 0d67078 0bb4279 2ce979c 0bb4279 2ce979c 0bb4279 2ce979c 0bb4279 0d67078 0bb4279 0d67078 0bb4279 0d67078 0bb4279 9e185d2 0bb4279 31bd9a2 2ce979c 0bb4279 f6b99ca 2ce979c f6b99ca 2ce979c f6b99ca 2ce979c f6b99ca 2ce979c 0bb4279 0d67078 2ce979c 0d67078 36ae3fb 0bb4279 0d67078 0bb4279 f6b99ca 0bb4279 0d67078 f6b99ca 9497fc8 1ed1b11 0d67078 f6b99ca 1ed1b11 0d67078 31bd9a2 ddbdc31 f6b99ca ddbdc31 0bb4279 ddbdc31 f6b99ca ddbdc31 0bb4279 f6b99ca 0bb4279 f6b99ca 0d67078 31bd9a2 0bb4279 f6b99ca ddbdc31 f6b99ca ddbdc31 f6b99ca 0d67078 0bb4279 0d67078 f6b99ca 0d67078 31bd9a2 f6b99ca 2ce979c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 |
import datetime
from uuid import uuid4
from openai import OpenAI
import gradio as gr
from theme import apriel
from utils import COMMUNITY_POSTFIX_URL, get_model_config, check_format, models_config, \
logged_event_handler, DEBUG_MODEL, log_debug, log_info, log_error
from log_chat import log_chat
MODEL_TEMPERATURE = 0.8
BUTTON_WIDTH = 160
DEFAULT_OPT_OUT_VALUE = False
DEFAULT_MODEL_NAME = "Apriel-Nemotron-15b-Thinker" if not DEBUG_MODEL else "Apriel-5b"
BUTTON_ENABLED = gr.update(interactive=True)
BUTTON_DISABLED = gr.update(interactive=False)
INPUT_ENABLED = gr.update(interactive=True)
INPUT_DISABLED = gr.update(interactive=False)
DROPDOWN_ENABLED = gr.update(interactive=True)
DROPDOWN_DISABLED = gr.update(interactive=False)
SEND_BUTTON_ENABLED = gr.update(interactive=True, visible=True)
SEND_BUTTON_DISABLED = gr.update(interactive=True, visible=False)
STOP_BUTTON_ENABLED = gr.update(interactive=True, visible=True)
STOP_BUTTON_DISABLED = gr.update(interactive=True, visible=False)
chat_start_count = 0
model_config = {}
openai_client = None
def app_loaded(state, request: gr.Request):
message_html = setup_model(DEFAULT_MODEL_NAME, intial=False)
state['session'] = request.session_hash if request else uuid4().hex
log_debug(f"app_loaded() --> Session: {state['session']}")
return state, message_html
def update_model_and_clear_chat(model_name):
actual_model_name = model_name.replace("Model: ", "")
desc = setup_model(actual_model_name)
return desc, []
def setup_model(model_name, intial=False):
global model_config, openai_client
model_config = get_model_config(model_name)
log_debug(f"update_model() --> Model config: {model_config}")
openai_client = OpenAI(
api_key=model_config.get('AUTH_TOKEN'),
base_url=model_config.get('VLLM_API_URL')
)
_model_hf_name = model_config.get("MODEL_HF_URL").split('https://huggingface.co/')[1]
_link = f"<a href='{model_config.get('MODEL_HF_URL')}{COMMUNITY_POSTFIX_URL}' target='_blank'>{_model_hf_name}</a>"
_description = f"We'd love to hear your thoughts on the model. Click here to provide feedback - {_link}"
log_debug(f"Switched to model {_model_hf_name}")
if intial:
return
else:
return _description
def chat_started():
# outputs: model_dropdown, user_input, send_btn, stop_btn, clear_btn
return (DROPDOWN_DISABLED, gr.update(value="", interactive=False),
SEND_BUTTON_DISABLED, STOP_BUTTON_ENABLED, BUTTON_DISABLED)
def chat_finished():
# outputs: model_dropdown, user_input, send_btn, stop_btn, clear_btn
return DROPDOWN_ENABLED, INPUT_ENABLED, SEND_BUTTON_ENABLED, STOP_BUTTON_DISABLED, BUTTON_ENABLED
def stop_chat(state):
state["stop_flag"] = True
gr.Info("Chat stopped")
return state
def toggle_opt_out(state, checkbox):
state["opt_out"] = checkbox
return state
def run_chat_inference(history, message, state):
global chat_start_count
state["is_streaming"] = True
state["stop_flag"] = False
error = None
model_name = model_config.get('MODEL_NAME')
if len(history) == 0:
state["chat_id"] = uuid4().hex
if openai_client is None:
log_info("Client UI is stale, letting user know to refresh the page")
gr.Warning("Client UI is stale, please refresh the page")
return history, INPUT_ENABLED, SEND_BUTTON_ENABLED, STOP_BUTTON_DISABLED, BUTTON_ENABLED, state
# outputs: model_dropdown, user_input, send_btn, stop_btn, clear_btn, session_state
log_debug(f"{'-' * 80}")
log_debug(f"chat_fn() --> Message: {message}")
log_debug(f"chat_fn() --> History: {history}")
try:
# Check if the message is empty
if not message.strip():
gr.Info("Please enter a message before sending")
yield history, INPUT_ENABLED, SEND_BUTTON_ENABLED, STOP_BUTTON_DISABLED, BUTTON_ENABLED, state
return history, INPUT_ENABLED, SEND_BUTTON_ENABLED, STOP_BUTTON_DISABLED, BUTTON_ENABLED, state
chat_start_count = chat_start_count + 1
user_messages_count = sum(1 for item in history if isinstance(item, dict) and item.get("role") == "user")
log_info(f"chat_start_count: {chat_start_count}, turns: {user_messages_count}, model: {model_name}")
is_reasoning = model_config.get("REASONING")
# Remove any assistant messages with metadata from history for multiple turns
log_debug(f"Initial History: {history}")
check_format(history, "messages")
history.append({"role": "user", "content": message})
log_debug(f"History with user message: {history}")
check_format(history, "messages")
# Create the streaming response
try:
history_no_thoughts = [item for item in history if
not (isinstance(item, dict) and
item.get("role") == "assistant" and
isinstance(item.get("metadata"), dict) and
item.get("metadata", {}).get("title") is not None)]
log_debug(f"Updated History: {history_no_thoughts}")
check_format(history_no_thoughts, "messages")
log_debug(f"history_no_thoughts with user message: {history_no_thoughts}")
stream = openai_client.chat.completions.create(
model=model_name,
messages=history_no_thoughts,
temperature=MODEL_TEMPERATURE,
stream=True
)
except Exception as e:
log_error(f"Error: {e}")
error = str(e)
yield ([{"role": "assistant",
"content": "😔 The model is unavailable at the moment. Please try again later."}],
INPUT_ENABLED, SEND_BUTTON_ENABLED, STOP_BUTTON_DISABLED, BUTTON_ENABLED, state)
if state["opt_out"] is not True:
log_chat(chat_id=state["chat_id"],
session_id=state["session"],
model_name=model_name,
prompt=message,
history=history,
info={"is_reasoning": model_config.get("REASONING"), "temperature": MODEL_TEMPERATURE,
"stopped": True, "error": str(e)},
)
else:
log_info(f"User opted out of chat history. Not logging chat. model: {model_name}")
return history, INPUT_ENABLED, SEND_BUTTON_ENABLED, STOP_BUTTON_DISABLED, BUTTON_ENABLED, state
if is_reasoning:
history.append(gr.ChatMessage(
role="assistant",
content="Thinking...",
metadata={"title": "🧠 Thought"}
))
log_debug(f"History added thinking: {history}")
check_format(history, "messages")
else:
history.append(gr.ChatMessage(
role="assistant",
content="",
))
log_debug(f"History added empty assistant: {history}")
check_format(history, "messages")
output = ""
completion_started = False
for chunk in stream:
if state["stop_flag"]:
log_debug(f"chat_fn() --> Stopping streaming...")
break # Exit the loop if the stop flag is set
# Extract the new content from the delta field
content = getattr(chunk.choices[0].delta, "content", "")
output += content
if is_reasoning:
parts = output.split("[BEGIN FINAL RESPONSE]")
if len(parts) > 1:
if parts[1].endswith("[END FINAL RESPONSE]"):
parts[1] = parts[1].replace("[END FINAL RESPONSE]", "")
if parts[1].endswith("[END FINAL RESPONSE]\n<|end|>"):
parts[1] = parts[1].replace("[END FINAL RESPONSE]\n<|end|>", "")
if parts[1].endswith("<|end|>"):
parts[1] = parts[1].replace("<|end|>", "")
history[-1 if not completion_started else -2] = gr.ChatMessage(
role="assistant",
content=parts[0],
metadata={"title": "🧠 Thought"}
)
if completion_started:
history[-1] = gr.ChatMessage(
role="assistant",
content=parts[1]
)
elif len(parts) > 1 and not completion_started:
completion_started = True
history.append(gr.ChatMessage(
role="assistant",
content=parts[1]
))
else:
if output.endswith("<|end|>"):
output = output.replace("<|end|>", "")
history[-1] = gr.ChatMessage(
role="assistant",
content=output
)
# log_message(f"Yielding messages: {history}")
yield history, INPUT_DISABLED, SEND_BUTTON_DISABLED, STOP_BUTTON_ENABLED, BUTTON_DISABLED, state
log_debug(f"Final History: {history}")
check_format(history, "messages")
yield history, INPUT_ENABLED, SEND_BUTTON_ENABLED, STOP_BUTTON_DISABLED, BUTTON_ENABLED, state
finally:
if error is None:
log_debug(f"chat_fn() --> Finished streaming. {chat_start_count} chats started.")
if state["opt_out"] is not True:
log_chat(chat_id=state["chat_id"],
session_id=state["session"],
model_name=model_name,
prompt=message,
history=history,
info={"is_reasoning": model_config.get("REASONING"), "temperature": MODEL_TEMPERATURE,
"stopped": state["stop_flag"]},
)
else:
log_info(f"User opted out of chat history. Not logging chat. model: {model_name}")
state["is_streaming"] = False
state["stop_flag"] = False
return history, INPUT_ENABLED, SEND_BUTTON_ENABLED, STOP_BUTTON_DISABLED, BUTTON_ENABLED, state
log_info(f"Gradio version: {gr.__version__}")
title = None
description = None
theme = apriel
with open('styles.css', 'r') as f:
custom_css = f.read()
with gr.Blocks(theme=theme, css=custom_css) as demo:
session_state = gr.State(value={
"is_streaming": False,
"stop_flag": False,
"chat_id": None,
"session": None,
"opt_out": DEFAULT_OPT_OUT_VALUE,
}) # Store session state as a dictionary
gr.HTML(f"""
<style>
@media (min-width: 1024px) {{
.send-button-container, .clear-button-container {{
max-width: {BUTTON_WIDTH}px;
}}
}}
</style>
""", elem_classes="css-styles")
with gr.Row(variant="panel", elem_classes="responsive-row"):
with gr.Column(scale=1, min_width=400, elem_classes="model-dropdown-container"):
model_dropdown = gr.Dropdown(
choices=[f"Model: {model}" for model in models_config.keys()],
value=f"Model: {DEFAULT_MODEL_NAME}",
label=None,
interactive=True,
container=False,
scale=0,
min_width=400
)
with gr.Column(scale=4, min_width=0):
feedback_message_html = gr.HTML(description, elem_classes="model-message")
chatbot = gr.Chatbot(
type="messages",
height="calc(100dvh - 310px)",
elem_classes="chatbot",
)
with gr.Row():
with gr.Column(scale=10, min_width=400):
with gr.Row():
user_input = gr.Textbox(
show_label=False,
placeholder="Type your message here and press Enter",
container=False
)
with gr.Column(scale=1, min_width=BUTTON_WIDTH * 2 + 20):
with gr.Row():
with gr.Column(scale=1, min_width=BUTTON_WIDTH, elem_classes="send-button-container"):
send_btn = gr.Button("Send", variant="primary")
stop_btn = gr.Button("Stop", variant="cancel", visible=False)
with gr.Column(scale=1, min_width=BUTTON_WIDTH, elem_classes="clear-button-container"):
clear_btn = gr.ClearButton(chatbot, value="New Chat", variant="secondary")
with gr.Row():
with gr.Column(min_width=400, elem_classes="opt-out-container"):
with gr.Row():
gr.HTML(
"We may use your chats to improve our AI. You may opt out if you don’t want your conversations saved.",
elem_classes="opt-out-message")
with gr.Row():
opt_out_checkbox = gr.Checkbox(
label="Don’t save my chat history for improvements or training",
value=DEFAULT_OPT_OUT_VALUE,
elem_classes="opt-out-checkbox",
interactive=True,
container=False
)
gr.on(
triggers=[send_btn.click, user_input.submit],
fn=run_chat_inference, # this generator streams results. do not use logged_event_handler wrapper
inputs=[chatbot, user_input, session_state],
outputs=[chatbot, user_input, send_btn, stop_btn, clear_btn, session_state],
concurrency_limit=4,
api_name=False
).then(
fn=chat_finished, inputs=None, outputs=[model_dropdown, user_input, send_btn, stop_btn, clear_btn], queue=False)
# In parallel, disable or update the UI controls
gr.on(
triggers=[send_btn.click, user_input.submit],
fn=chat_started,
inputs=None,
outputs=[model_dropdown, user_input, send_btn, stop_btn, clear_btn],
queue=False,
show_progress='hidden',
api_name=False
)
stop_btn.click(
fn=stop_chat,
inputs=[session_state],
outputs=[session_state],
api_name=False
)
opt_out_checkbox.change(fn=toggle_opt_out, inputs=[session_state, opt_out_checkbox], outputs=[session_state])
# Ensure the model is reset to default on page reload
demo.load(
fn=logged_event_handler(
log_msg="Browser session started",
event_handler=app_loaded
),
inputs=[session_state],
outputs=[session_state, feedback_message_html],
queue=True,
api_name=False
)
model_dropdown.change(
fn=update_model_and_clear_chat,
inputs=[model_dropdown],
outputs=[feedback_message_html, chatbot],
api_name=False
)
demo.queue(default_concurrency_limit=2).launch(ssr_mode=False, show_api=False)
log_info("Gradio app launched")
|