Spaces:
Running
Running
File size: 17,913 Bytes
b9fe2dd |
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 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 |
import random
import re
import time
import urllib.parse
from dataclasses import dataclass, field
from typing import Generator, Literal
from docs_index import NodeWithScore, ask, retrieve
import mesop as me
def on_load(e: me.LoadEvent):
state = me.state(State)
state.examples = random.sample(EXAMPLES, 3)
if "prompt" in me.query_params:
state.initial_input = me.query_params["prompt"]
me.set_theme_mode("system")
yield
me.focus_component(key=f"input-{len(state.output)}")
yield
@me.page(
on_load=on_load,
security_policy=me.SecurityPolicy(
allowed_script_srcs=[
"https://cdn.jsdelivr.net",
],
allowed_iframe_parents=[
"https://huggingface.co",
"https://mesop-dev.github.io",
"http://localhost:*",
],
),
title="Mesop Docs Chat",
)
def page():
frame_listener()
return chat()
Role = Literal["user", "assistant"]
_ROLE_USER = "user"
_ROLE_ASSISTANT = "assistant"
_BOT_USER_DEFAULT = "Mesop Docs Bot"
_COLOR_BACKGROUND = me.theme_var("background")
_DEFAULT_PADDING = me.Padding.all(12)
_LABEL_BUTTON = "send"
_LABEL_BUTTON_IN_PROGRESS = "pending"
_LABEL_INPUT = "Ask Mesop Docs Bot"
_STYLE_APP_CONTAINER = me.Style(
background=_COLOR_BACKGROUND,
display="flex",
flex_direction="column",
height="100%",
)
_STYLE_TITLE = me.Style(padding=me.Padding(left=10))
_STYLE_CHAT_BOX = me.Style(
height="100%",
overflow_y="scroll",
padding=_DEFAULT_PADDING,
background=me.theme_var("background"),
)
_STYLE_CHAT_BUTTON = me.Style(margin=me.Margin(top=8, left=8))
_STYLE_CHAT_BUBBLE_NAME = me.Style(
font_weight="bold",
font_size="13px",
padding=me.Padding(left=15, right=15, bottom=5),
)
def _make_style_chat_ui_container() -> me.Style:
return me.Style(
flex_grow=1,
display="grid",
grid_template_columns="repeat(1, 1fr)",
grid_template_rows="5fr 1fr",
margin=me.Margin.symmetric(vertical=0, horizontal="auto"),
width="min(100%)",
background=_COLOR_BACKGROUND,
box_shadow=(
"0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f"
),
padding=me.Padding(top=3, left=12, right=12),
)
@dataclass(kw_only=True)
class Chunk:
content: str = ""
citation_numbers: list[int] = field(default_factory=list)
@dataclass(kw_only=True)
class ChatMessage:
"""Chat message metadata."""
role: Role = "user"
content: str = ""
chunks: list[Chunk] = field(default_factory=list)
@dataclass(kw_only=True)
class Citation:
number: int = 0
original_numbers: list[int] = field(default_factory=list)
url: str = ""
title: str = ""
breadcrumbs: list[str] = field(default_factory=list)
content: str = ""
@me.stateclass
class State:
input: str
initial_input: str
output: list[ChatMessage]
citations: list[Citation]
intermediate_citations: list[Citation]
in_progress: bool = False
examples: list[str]
def on_blur(e: me.InputBlurEvent):
state = me.state(State)
state.input = e.value
mesop_questions = [
"How can I reset an input component?",
"Show me how to style a component",
"Create a multi-page app",
"Is it possible to create custom components?",
"Implement authentication",
"Deploy a Mesop app",
"Optimize performance",
"Can I use JavaScript libraries in Mesop?",
"Stream UI updates from an LLM API",
"Debug a Mesop application",
"Is Mesop ready for production use?",
"Create a mobile-friendly and responsive UI",
"Handle asynchronous operations",
"Implement dark mode",
"Add tooltips to Mesop components",
"Render a pandas DataFrame as a table",
"Add charts",
"Handle file uploads",
]
EXAMPLES = [
*mesop_questions,
"How do I create a streaming chat UI?",
"How do I install Mesop?",
"How is Mesop different from other UI frameworks?",
]
def on_click_submit(e: me.ClickEvent) -> Generator[None, None, None]:
yield from submit()
def on_input(e: me.InputEvent) -> Generator[None, None, None]:
state = me.state(State)
if len(e.value) > 2:
nodes = retrieve(e.value)
citations = get_citations(nodes)
citation_by_breadcrumb = {
tuple(citation.breadcrumbs): citation for citation in citations
}
state.intermediate_citations = list(citation_by_breadcrumb.values())
yield
if not e.value.endswith("\n"):
return
state.input = e.value
yield from submit()
me.focus_component(key=f"input-{len(state.output)}")
yield
def submit():
state = me.state(State)
if state.in_progress or not state.input:
return
input = state.input
state.input = ""
yield
state.output = []
output = state.output
output.append(ChatMessage(role=_ROLE_USER, content=input))
state.in_progress = True
yield
start_time = time.time()
output_message = transform(input, state.output)
assistant_message = ChatMessage(role=_ROLE_ASSISTANT)
output.append(assistant_message)
state.output = output
for content in output_message:
assistant_message.content += content
if (time.time() - start_time) >= 0.75:
start_time = time.time()
transform_to_chunks(assistant_message)
yield
transform_to_chunks(assistant_message)
state.in_progress = False
me.focus_component(key=f"input-{len(state.output)}")
yield
# TODO: handle the case where [4,5]
def transform_to_chunks(message: ChatMessage):
message.chunks = []
# Split the message content into chunks based on citations
chunks = re.split(r"(\[\d+(?:,\s*\d+)*\])", message.content)
# Initialize variables
current_chunk = ""
current_citations: list[int] = []
# Process each chunk
for chunk in chunks:
if re.match(r"\[\d+(?:,\s*\d+)*\]", chunk):
try:
# Remove brackets and split by comma
citation_numbers = [int(num.strip()) for num in chunk[1:-1].split(",")]
current_citations.extend(citation_numbers)
except Exception:
print("Error: Unable to parse citation numbers")
else:
# If it's text content
if current_chunk:
# If there's existing content, create a new chunk
message.chunks.append(
Chunk(
content=current_chunk,
citation_numbers=map_citation_numbers(current_citations),
)
)
current_chunk = ""
current_citations = []
# Add the new content
current_chunk += chunk
# Add the last chunk if there's any remaining content
if current_chunk:
message.chunks.append(
Chunk(
content=current_chunk,
citation_numbers=map_citation_numbers(current_citations),
)
)
def map_citation_numbers(citation_numbers: list[int]) -> list[int]:
return citation_numbers
def chat(
title: str | None = None,
bot_user: str = _BOT_USER_DEFAULT,
):
state = me.state(State)
def toggle_theme(e: me.ClickEvent):
if me.theme_brightness() == "light":
me.set_theme_mode("dark")
else:
me.set_theme_mode("light")
with me.box(style=_STYLE_APP_CONTAINER):
with me.content_button(
type="icon",
style=me.Style(position="absolute", left=8, top=12),
on_click=toggle_theme,
):
me.icon("light_mode" if me.theme_brightness() == "dark" else "dark_mode")
with me.box(
style=me.Style(
display="flex",
flex_direction="row",
padding=me.Padding.all(8),
background=me.theme_var("background"),
width="100%",
border=me.Border.all(
me.BorderSide(width=0, style="solid", color="black")
),
box_shadow="0 10px 20px #0000000a, 0 2px 6px #0000000a, 0 0 1px #0000000a",
)
):
with me.box(style=me.Style(flex_grow=1)):
me.native_textarea(
value=state.initial_input,
placeholder=_LABEL_INPUT,
key=f"input-{len(state.output)}",
on_blur=on_blur,
on_input=on_input,
style=me.Style(
color=me.theme_var("on-background"),
padding=me.Padding(top=16, left=48),
background=me.theme_var("background"),
letter_spacing="0.07px",
outline="none",
width="100%",
overflow_y="auto",
border=me.Border.all(
me.BorderSide(style="none"),
),
),
)
with me.content_button(
color="primary",
type="flat",
disabled=state.in_progress,
on_click=on_click_submit,
style=_STYLE_CHAT_BUTTON,
):
me.icon(
_LABEL_BUTTON_IN_PROGRESS if state.in_progress else _LABEL_BUTTON
)
with me.box(style=_make_style_chat_ui_container()):
if title:
me.text(title, type="headline-5", style=_STYLE_TITLE)
with me.box(style=_STYLE_CHAT_BOX):
if not state.output and not state.intermediate_citations:
me.text(
"Welcome to Mesop Docs Bot! Ask me anything about Mesop.",
style=me.Style(
margin=me.Margin(bottom=24),
font_weight=500,
),
)
with me.box(
style=me.Style(
display="flex",
flex_direction="column",
gap=24,
)
):
for example in state.examples:
example_box(example)
if not state.output and state.intermediate_citations:
with me.box(
style=me.Style(
padding=me.Padding(top=16),
display="flex",
flex_direction="column",
gap=16,
),
):
for citation in state.intermediate_citations:
with citation_box(url=citation.url):
citation_content(
Citation(
url=citation.url,
title=citation.title,
breadcrumbs=citation.breadcrumbs,
original_numbers=citation.original_numbers,
content=citation.content,
number=0,
)
)
for msg in state.output:
with me.box(
style=me.Style(
display="flex", flex_direction="column", align_items="start"
)
):
if msg.role == _ROLE_ASSISTANT:
me.text(bot_user, style=_STYLE_CHAT_BUBBLE_NAME)
else:
me.text("You", style=_STYLE_CHAT_BUBBLE_NAME)
with me.box(
style=me.Style(
width="100%",
font_size="16px",
line_height="1.5",
border_radius="15px",
padding=me.Padding(right=15, left=15, bottom=3),
margin=me.Margin(bottom=10),
)
):
if msg.role == _ROLE_USER:
me.text(
msg.content, style=me.Style(margin=me.Margin(bottom=16))
)
else:
if state.in_progress:
me.progress_spinner()
used_citation_numbers: set[int] = set()
for chunk in msg.chunks:
me.text(
chunk.content,
style=me.Style(white_space="pre-wrap", display="inline"),
)
if chunk.citation_numbers:
with me.box(
style=me.Style(
display="inline-flex",
flex_direction="row",
gap=4,
margin=me.Margin.symmetric(horizontal=6),
)
):
for citation_number in chunk.citation_numbers:
used_citation_numbers.add(citation_number)
citation_tooltip(
get_citation_number(
citation_number, used_citation_numbers
)
)
with me.box(
style=me.Style(
padding=me.Padding(top=16),
display="flex",
flex_direction="column",
gap=16,
),
):
for citation in state.citations:
if citation.number in used_citation_numbers:
with citation_box(url=citation.url):
citation_content(
Citation(
url=citation.url,
title=citation.title,
breadcrumbs=citation.breadcrumbs,
original_numbers=citation.original_numbers,
content=citation.content,
number=get_citation_number(
citation.number, used_citation_numbers
),
)
)
if not me.state(State).in_progress:
with me.box(
style=me.Style(
display="flex",
flex_direction="row",
gap=4,
margin=me.Margin(top=16),
)
):
NEWLINE = "\n"
me.text("Is there an issue with this this response?")
me.link(
text="File an issue",
url="https://github.com/mesop-dev/mesop/issues/new?assignees=&labels=bug,chatbot&projects=&title=Bad%20chatbot%20response&body="
+ urllib.parse.quote(f"""
What was the issue with the chatbot response?
---
Original content:
__Prompt:__
{state.output[0].content}
__Response:__
{state.output[-1].content}
__Citations:__
{NEWLINE.join([f"1. {citation.url}" for citation in state.citations])}
"""),
style=me.Style(
color=me.theme_var("primary"),
text_decoration="none",
),
open_in_new_tab=True,
)
def citation_tooltip(citation_number: int):
state = me.state(State)
with me.box(style=me.Style(display="inline-block")):
with me.tooltip(
message=state.citations[citation_number - 1].title,
position="below",
):
me.text(
f"{citation_number}",
style=me.Style(
background=me.theme_var("surface-variant"),
padding=me.Padding.symmetric(horizontal=5),
border_radius="6px",
font_weight=500,
),
)
@me.web_component(path="./citation.js")
def citation_box(
*,
url: str,
key: str | None = None,
):
return me.insert_web_component(
name="citation-component",
key=key,
properties={
"url": url,
"active": True,
},
)
def citation_content(citation: Citation):
with me.box(
style=me.Style(
display="flex",
flex_direction="column",
padding=me.Padding.symmetric(vertical=8, horizontal=16),
cursor="pointer",
),
):
with me.box(
style=me.Style(
display="flex",
flex_direction="row",
gap=4,
align_items="start",
)
):
if citation.number:
me.text(
f"{citation.number}", style=me.Style(font_weight=500, font_size=18)
)
me.icon(
icon="description",
style=me.Style(font_size=20, padding=me.Padding(top=3, left=3)),
)
me.text(citation.title)
with me.box(
style=me.Style(
display="flex",
flex_direction="row",
gap=8,
font_size="14px",
font_weight=500,
)
):
for breadcrumb in citation.breadcrumbs:
me.text(breadcrumb)
if breadcrumb != citation.breadcrumbs[-1]:
me.text(" > ")
def example_box(example: str):
with me.box(
style=me.Style(
background=me.theme_var("secondary-container"),
border_radius="12px",
padding=me.Padding(left=16, right=16, top=16, bottom=16),
cursor="pointer",
),
key=example,
on_click=on_click_example,
):
me.text(example)
def on_click_example(e: me.ClickEvent) -> Generator[None, None, None]:
state = me.state(State)
state.input = e.key
yield from submit()
def transform(
message: str, history: list[ChatMessage]
) -> Generator[str, None, None]:
response = ask(message)
citations = get_citations(response.source_nodes)
me.state(State).citations = citations
yield from response.response_gen
def get_citations(source_nodes: list[NodeWithScore]) -> list[Citation]:
citations: list[Citation] = []
for i, source_node in enumerate(source_nodes):
url: str = source_node.node.metadata.get("url", "")
breadcrumbs = url.split("https://mesop-dev.github.io/mesop/")[-1].split("/")
title = source_node.node.metadata.get("title", "")
content_lines = source_node.node.get_content().split("\n")
for line in content_lines[2:]:
if line and not line.startswith("```"):
break
if len(content_lines) > 2:
fragment: str = (
"#:~:text="
+ urllib.parse.quote(content_lines[1])
+ ",-"
# Just take the first two words of the line to avoid
# mismatching (e.g. URLs).
+ urllib.parse.quote(" ".join(line.split(" ")[:2]))
)
else:
fragment = ""
citations.append(
Citation(
url=url + fragment,
breadcrumbs=breadcrumbs,
title=title,
number=i + 1,
)
)
return citations
def get_citation_number(
citation_number: int, used_citation_numbers: set[int]
) -> int:
number = 0
for n in used_citation_numbers:
number += 1 # noqa: SIM113
if n == citation_number:
return number
raise ValueError(f"Citation number {citation_number} not found")
@me.web_component(path="./frame_listener.js")
def frame_listener(
*,
key: str | None = None,
):
pass
|