File size: 28,575 Bytes
48d895c | 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 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 | """XAI app-chat protocol — payload builder and SSE stream adapter."""
import re
from dataclasses import dataclass
from typing import Any
import orjson
from app.platform.errors import UpstreamError
from app.platform.logging.logger import logger
from app.platform.config.snapshot import get_config
from app.control.model.enums import ModeId
from app.dataplane.reverse.protocol.xai_chat_reasoning import ReasoningAggregator
def build_chat_payload(
*,
message: str,
mode_id: ModeId,
file_attachments: list[str] = (),
tool_overrides: dict[str, Any] | None = None,
model_config_override: dict[str, Any] | None = None,
request_overrides: dict[str, Any] | None = None,
) -> dict[str, Any]:
"""Build the JSON payload for POST /rest/app-chat/conversations/new."""
cfg = get_config()
payload: dict[str, Any] = {
"collectionIds": [],
"connectors": [],
"deviceEnvInfo": {
"darkModeEnabled": False,
"devicePixelRatio": 2,
"screenHeight": 1329,
"screenWidth": 2056,
"viewportHeight": 1083,
"viewportWidth": 2056,
},
"disableMemory": not cfg.get_bool("features.memory", False),
"disableSearch": False,
"disableSelfHarmShortCircuit": False,
"disableTextFollowUps": False,
"enableImageGeneration": True,
"enableImageStreaming": True,
"enableSideBySide": True,
"fileAttachments": list(file_attachments),
"forceConcise": False,
"forceSideBySide": False,
"imageAttachments": [],
"imageGenerationCount": 2,
"isAsyncChat": False,
"message": message,
"modeId": mode_id.to_api_str(),
"responseMetadata": {},
"returnImageBytes": False,
"returnRawGrokInXaiRequest": False,
"searchAllConnectors": False,
"sendFinalMetadata": True,
"temporary": cfg.get_bool("features.temporary", True),
"toolOverrides": tool_overrides or {
"gmailSearch": False,
"googleCalendarSearch": False,
"outlookSearch": False,
"outlookCalendarSearch": False,
"googleDriveSearch": False,
},
}
custom = cfg.get_str("features.custom_instruction", "").strip()
if custom:
payload["customPersonality"] = custom
if model_config_override:
payload["responseMetadata"]["modelConfigOverride"] = model_config_override
if request_overrides:
payload.update({k: v for k, v in request_overrides.items() if v is not None})
logger.debug(
"chat payload built: mode={} message_len={} file_count={}",
mode_id.to_api_str(), len(message), len(file_attachments),
)
return payload
# ---------------------------------------------------------------------------
# SSE line classification (unchanged)
# ---------------------------------------------------------------------------
def classify_line(line: str | bytes) -> tuple[str, str]:
"""Return (event_type, data) for a raw SSE line.
event_type: 'data' | 'done' | 'skip'
Handles both standard SSE ``data: {...}`` lines and raw JSON lines
(upstream sometimes omits the ``data:`` prefix).
"""
if isinstance(line, bytes):
line = line.decode("utf-8", "replace")
line = line.strip()
if not line:
return "skip", ""
if line.startswith("data:"):
data = line[5:].strip()
if data == "[DONE]":
return "done", ""
return "data", data
if line.startswith("event:"):
return "skip", ""
# Raw JSON line (no "data:" prefix) — treat as data.
if line.startswith("{"):
return "data", line
return "skip", ""
def stream_error_from_payload(obj: dict[str, Any]) -> UpstreamError | None:
"""Convert upstream in-band stream error payloads to retryable errors."""
error = obj.get("error")
if not isinstance(error, dict):
return None
raw_message = error.get("message") or error.get("error") or "Upstream stream error"
message = str(raw_message)
code = error.get("code")
text = message.lower()
status = 429 if code == 8 or "too many requests" in text or "rate limit" in text else 502
try:
body = orjson.dumps(obj).decode()
except (TypeError, ValueError):
body = str(obj)
return UpstreamError(
f"Upstream stream error: {message}",
status=status,
body=body[:400],
)
def raise_for_stream_error(data: str | bytes | dict[str, Any]) -> None:
"""Raise :class:`UpstreamError` for raw or decoded in-band stream errors."""
if isinstance(data, dict):
obj = data
else:
try:
obj = orjson.loads(data)
except (orjson.JSONDecodeError, ValueError, TypeError):
return
if not isinstance(obj, dict):
return
exc = stream_error_from_payload(obj)
if exc is not None:
raise exc
# ---------------------------------------------------------------------------
# FrameEvent — single output event from StreamAdapter.feed()
# ---------------------------------------------------------------------------
@dataclass(slots=True)
class FrameEvent:
"""One parsed event produced by StreamAdapter."""
kind: str
"""Event kind:
- ``text`` — cleaned final text token (content = token string)
- ``thinking`` — Grok main-model thinking (content = raw token)
- ``image`` — generated image final URL (content = full URL, image_id = upstream UUID)
- ``image_progress`` — generated image progress (content = percent string, image_id = upstream UUID)
- ``annotation`` — url citation annotation (annotation_data = annotation dict)
- ``soft_stop`` — stream end signal
- ``skip`` — filtered frame, do nothing
"""
content: str = ""
image_id: str = ""
rollout_id: str = ""
message_tag: str = ""
message_step_id: int | None = None
annotation_data: dict | None = None
# ---------------------------------------------------------------------------
# StreamAdapter — stateful SSE frame parser
# ---------------------------------------------------------------------------
_GROK_RENDER_RE = re.compile(
r'<grok:render\s+card_id="([^"]+)"\s+card_type="([^"]+)"\s+type="([^"]+)"'
r'[^>]*>.*?</grok:render>',
re.DOTALL,
)
_IMAGE_BASE = "https://assets.grok.com/"
# 工具使用卡片 → emoji 单行格式化映射(详细模式专用)
# 格式: tool_name → (emoji, (可展示的参数 key 列表))
_TOOL_FMT: dict[str, tuple[str, tuple[str, ...]]] = {
"web_search": ("🔍", ("query", "q")),
"x_search": ("🔍", ("query",)),
"x_keyword_search": ("🔍", ("query",)),
"x_semantic_search": ("🔍", ("query",)),
"browse_page": ("🌐", ("url",)),
"search_images": ("🖼️", ("image_description", "imageDescription")),
"image_search": ("🖼️", ("image_description", "imageDescription")),
"chatroom_send": ("📋", ("message",)),
"code_execution": ("💻", ()),
}
class StreamAdapter:
"""Parse upstream SSE frames and emit :class:`FrameEvent` objects.
One instance per HTTP request. Call :meth:`feed` for every ``data:``
line; iterate over the returned list of events.
"""
__slots__ = (
"_card_cache",
"_citation_order",
"_citation_map",
"_last_citation_index",
"_pending_citations",
"_annotations",
"_text_offset",
"_emitted_reasoning_keys",
"_reasoning",
"_summary_mode",
"_last_rollout",
"_content_started",
"_web_search_results",
"_web_search_urls_seen",
"thinking_buf",
"text_buf",
"image_urls",
)
def __init__(self) -> None:
self._card_cache: dict[str, dict] = {}
self._citation_order: list[str] = []
self._citation_map: dict[str, int] = {}
self._last_citation_index: int = -1
self._pending_citations: list[dict] = [] # _render_replace 产出的待定位引用
self._annotations: list[dict] = [] # 已定位的完整 annotations(绝对位置)
self._text_offset: int = 0 # 累计文本长度(仅 text 事件)
self._emitted_reasoning_keys: set[str] = set()
# 思维链模式:精简摘要 / 详细原始流
self._summary_mode: bool = get_config().get_bool("features.thinking_summary", False)
self._last_rollout: str = ""
self._content_started: bool = False
self._reasoning = ReasoningAggregator() if self._summary_mode else None
self._web_search_results: list[dict] = []
self._web_search_urls_seen: set[str] = set()
self.thinking_buf: list[str] = []
self.text_buf: list[str] = []
self.image_urls: list[tuple[str, str]] = [] # [(url, imageUuid), ...]
# 搜索信源追加:当配置启用且有 webSearchResults 时,格式化为 ## Sources 段落
# 标记行 [grok2api-sources]: # 是 markdown link reference definition,渲染器不显示,
# 用于 _extract_message() 在多轮对话中精确识别并剥离前轮的 Sources 段落
def references_suffix(self) -> str:
"""当有搜索信源且配置启用时,格式化为 ## Sources markdown 段落。"""
if not self._web_search_results:
return ""
if not get_config().get_bool("features.show_search_sources", False):
return ""
lines = ["\n\n## Sources", "[grok2api-sources]: #"]
for item in self._web_search_results:
title = item.get("title") or item.get("url", "")
# 转义 Markdown 链接文本中的特殊字符,防止 []\ 打坏语法
title = title.replace("\\", "\\\\").replace("[", "\\[").replace("]", "\\]")
lines.append(f"- [{title}]({item['url']})")
return "\n".join(lines) + "\n"
# 内联引用 annotations:生成时同步构建,含绝对位置
def annotations_list(self) -> list[dict]:
"""已收集的 url_citation annotations(扁平格式,绝对位置)。无引用时返回 []。"""
return list(self._annotations)
# 结构化搜索信源:始终输出(不受配置开关控制),供 search_sources 字段使用
def search_sources_list(self) -> list[dict] | None:
"""当有搜索信源时,返回结构化列表;无则返回 None。"""
if not self._web_search_results:
return None
return [
{
"url": item["url"],
"title": item.get("title") or item.get("url", ""),
"type": item.get("type", "web"),
}
for item in self._web_search_results
]
# ------------------------------------------------------------------
# Public API
# ------------------------------------------------------------------
def feed(self, data: str) -> list[FrameEvent]:
"""Parse one JSON ``data:`` payload; return 0-N events."""
try:
obj = orjson.loads(data)
except (orjson.JSONDecodeError, ValueError, TypeError):
return []
raise_for_stream_error(obj)
result = obj.get("result")
if not result:
return []
resp = result.get("response")
if not resp:
return []
events: list[FrameEvent] = []
# ── cache every cardAttachment first ──────────────────────
card_raw = resp.get("cardAttachment")
if card_raw:
events.extend(self._handle_card(card_raw))
# ── 采集 webSearchResults(搜索信源,多帧累积去重)───────
wsr = resp.get("webSearchResults")
if wsr and isinstance(wsr, dict):
for item in wsr.get("results", []):
if isinstance(item, dict) and item.get("url"):
url = item["url"]
if url not in self._web_search_urls_seen:
self._web_search_urls_seen.add(url)
self._web_search_results.append({**item, "type": "web"})
# ── 采集 xSearchResults(X/Twitter 帖子信源,多帧累积去重)──
xsr = resp.get("xSearchResults")
if xsr and isinstance(xsr, dict):
for item in xsr.get("results", []):
if isinstance(item, dict) and item.get("postId") and item.get("username"):
url = f"https://x.com/{item['username']}/status/{item['postId']}"
if url not in self._web_search_urls_seen:
self._web_search_urls_seen.add(url)
# 构造 title:归一化空白,text 为空退回 @username
# Markdown 转义统一在 references_suffix() 中处理
raw = re.sub(r"\s+", " ", (item.get("text") or "")).strip()
if raw:
title = f"𝕏/@{item['username']}: {raw[:50]}{'...' if len(raw) > 50 else ''}"
else:
title = f"𝕏/@{item['username']}"
self._web_search_results.append({"url": url, "title": title, "type": "x_post"})
token = resp.get("token")
think = resp.get("isThinking")
tag = resp.get("messageTag")
rollout = resp.get("rolloutId")
step_id = resp.get("messageStepId")
if tag == "tool_usage_card":
# 正文已开始后的迟到 tool card:静默丢弃
if self._content_started:
return events
if self._summary_mode:
# 精简模式:走 ReasoningAggregator 提炼摘要
for line in self._summarize_tool_usage_summary(
resp, rollout=rollout, step_id=step_id,
):
self._append_reasoning(
events, line,
rollout=rollout, tag=tag, step_id=step_id,
)
else:
# 详细模式:格式化为 emoji 单行(含 Agent 身份)
line = self._format_tool_card(resp, rollout=rollout)
if line:
# 同步 Agent 标识,确保后续 Grok summary 能正确插前缀
if rollout:
self._last_rollout = rollout
self._append_reasoning(
events, line,
rollout=rollout, tag=tag, step_id=step_id,
)
return events # card events (if any) already added
# ── raw_function_result ───────────────────────────────────
if tag == "raw_function_result":
return events
# ── toolUsageCardId-only follow-up frame ──────────────────
if resp.get("toolUsageCardId") and not resp.get("webSearchResults") and not resp.get("codeExecutionResult"):
return events
# ── 思维链 token 处理 ──────────────────────────────────────
if token is not None and think is True:
# 正文已开始后的迟到 thinking:写入 buf(非流式可用)但不发事件(流式不显示)
if self._content_started:
raw = str(token).strip()
if raw:
formatted = raw if raw.endswith("\n") else raw + "\n"
self.thinking_buf.append(formatted)
return events
if self._summary_mode:
# 精简模式:走 ReasoningAggregator 提炼摘要
for line in self._reasoning.on_thinking(
str(token), tag=tag, rollout=rollout,
step_id=step_id if isinstance(step_id, int) else None,
):
self._append_reasoning(
events, line,
rollout=rollout, tag=tag, step_id=step_id,
)
else:
# 详细模式:Agent 切换时插入身份前缀,原始 token 直接透传
raw = str(token)
# 去掉 Grok summary 自带的 "- " 前缀,避免触发 markdown 列表缩进
if raw.startswith("- "):
raw = raw[2:]
if not raw:
return events
agent = rollout or ""
if agent and agent != self._last_rollout:
self._last_rollout = agent
# Agent 切换标识:绕过去重,直接写 buf + 发 event(同一 Agent 可多次出现)
header = f"\n[{agent}]\n"
self.thinking_buf.append(header)
events.append(FrameEvent(
"thinking", header, rollout_id=agent,
))
self._append_reasoning(
events, raw,
rollout=rollout, tag=tag, step_id=step_id,
)
return events
# ── final text token (needs cleaning) ─────────────────────
if token is not None and think is not True and tag == "final":
self._content_started = True
cleaned, local_anns = self._clean_token(token)
if cleaned:
# 先发 text 事件(OpenAI 顺序:text.delta 先,annotation.added 后)
self.text_buf.append(cleaned)
events.append(FrameEvent("text", cleaned))
# 再发 annotation 事件:局部位置 → 绝对位置
for ann in local_anns:
ann["start_index"] = self._text_offset + ann.pop("local_start")
ann["end_index"] = self._text_offset + ann.pop("local_end")
self._annotations.append(ann)
events.append(FrameEvent("annotation", annotation_data=ann))
self._text_offset += len(cleaned)
return events
# ── end signals ───────────────────────────────────────────
if resp.get("isSoftStop"):
self._flush_pending_reasoning(events)
events.append(FrameEvent("soft_stop"))
return events
if resp.get("finalMetadata"):
self._flush_pending_reasoning(events)
events.append(FrameEvent("soft_stop"))
return events
return events
# ------------------------------------------------------------------
# Card attachment handling
# ------------------------------------------------------------------
def _handle_card(self, card_raw: dict) -> list[FrameEvent]:
"""Cache card data; emit image event on progress=100."""
try:
jd = orjson.loads(card_raw["jsonData"])
except (orjson.JSONDecodeError, ValueError, TypeError, KeyError):
return []
card_id = jd.get("id", "")
self._card_cache[card_id] = jd
chunk = jd.get("image_chunk")
if chunk:
progress = chunk.get("progress")
uuid = chunk.get("imageUuid", "")
events: list[FrameEvent] = []
try:
if progress is not None:
events.append(FrameEvent("image_progress", str(int(progress)), uuid))
except (TypeError, ValueError):
pass
if chunk.get("progress") == 100 and not chunk.get("moderated"):
url = _IMAGE_BASE + chunk["imageUrl"]
self.image_urls.append((url, uuid))
events.append(FrameEvent("image", url, uuid))
return events
return []
# ------------------------------------------------------------------
# Token cleaning — <grok:render> → markdown
# ------------------------------------------------------------------
# 返回 (cleaned_text, local_annotations),annotations 含局部 start/end
def _clean_token(self, token: str) -> tuple[str, list[dict]]:
if "<grok:render" not in token:
return token, []
cleaned = _GROK_RENDER_RE.sub(self._render_replace, token)
# 去除引用标签替换后残留的独占空白行(如 "\n [[1]](...)" → " [[1]](...)")
cleaned = cleaned.lstrip("\n") if cleaned.startswith("\n") and "[[" in cleaned else cleaned
# 从 cleaned 中定位 pending citations 的局部位置(游标递进防碰撞)
local_annotations: list[dict] = []
if self._pending_citations:
search_start = 0
for cite in self._pending_citations:
pos = cleaned.find(cite["needle"], search_start)
if pos != -1:
local_annotations.append({
"type": "url_citation",
"url": cite["url"],
"title": cite["title"],
"local_start": pos,
"local_end": pos + len(cite["needle"]),
})
search_start = pos + len(cite["needle"])
# 找不到 → fail closed,跳过此 annotation
self._pending_citations.clear()
return cleaned, local_annotations
def _render_replace(self, m: re.Match) -> str:
card_id = m.group(1)
render_type = m.group(3)
card = self._card_cache.get(card_id)
if not card:
return ""
if render_type == "render_searched_image":
img = card.get("image", {})
title = img.get("title", "image")
thumb = img.get("thumbnail") or img.get("original", "")
link = img.get("link", "")
if link:
return f"[]({link})"
return f""
if render_type == "render_generated_image":
return "" # actual URL emitted by progress=100 card frame
if render_type == "render_inline_citation":
url = card.get("url", "")
if not url:
return ""
index = self._citation_map.get(url)
if index is None:
self._citation_order.append(url)
index = len(self._citation_order)
self._citation_map[url] = index
# 连续相同引用去重
if index == self._last_citation_index:
return ""
self._last_citation_index = index
citation_text = f" [[{index}]]({url})"
# 解析标题:card → webSearchResults → URL fallback
# Grok citation card 仅含 [id, type, cardType, url],无 title 字段
title = card.get("title", "")
if not title:
for item in self._web_search_results:
if item.get("url") == url:
title = item.get("title", "")
break
# 记录引用元数据,位置在 _clean_token 返回后定位
self._pending_citations.append({
"url": url,
"title": title or url,
"needle": citation_text,
})
return citation_text
return ""
def _append_reasoning(
self,
events: list[FrameEvent],
line: str,
*,
rollout: str | None,
tag: str | None,
step_id: Any,
) -> None:
"""将思维链文本追加到 thinking_buf 和事件列表(双模式去重)"""
if self._summary_mode:
# 精简模式:激进去重(移除标点/空格后比较)
text = line.strip()
if not text:
return
key = self._normalize_key(text)
else:
# 详细模式:精确去重(rollout + 原文)
text = line
if not text:
return
key = f"{rollout or ''}:{text}"
if key in self._emitted_reasoning_keys:
return
self._emitted_reasoning_keys.add(key)
# 统一用 \n 换行(去掉 "- " 前缀后不再有列表上下文,普通 \n 即可)
formatted = text if text.endswith("\n") else text + "\n"
self.thinking_buf.append(formatted)
events.append(FrameEvent(
"thinking",
formatted,
rollout_id=rollout or "",
message_tag=tag or "",
message_step_id=step_id if isinstance(step_id, int) else None,
))
def _flush_pending_reasoning(self, events: list[FrameEvent]) -> None:
"""flush ReasoningAggregator 缓冲事件(仅精简模式有效)"""
if self._summary_mode and self._reasoning is not None:
for line in self._reasoning.finalize():
self._append_reasoning(events, line, rollout="", tag="summary", step_id=None)
@staticmethod
def _extract_tool_info(resp: dict[str, Any]) -> tuple[str, dict[str, Any]]:
"""从 toolUsageCard 提取工具名(snake_case)和参数"""
card = resp.get("toolUsageCard")
if not isinstance(card, dict):
return "", {}
for key, value in card.items():
if key == "toolUsageCardId" or not isinstance(value, dict):
continue
# camelCase → snake_case
tool_name = re.sub(r"(?<!^)([A-Z])", r"_\1", key).lower()
raw_args = value.get("args")
return tool_name, (raw_args if isinstance(raw_args, dict) else {})
return "", {}
# 精简模式:走 ReasoningAggregator 提炼摘要
def _summarize_tool_usage_summary(self, resp: dict[str, Any], *, rollout: str | None, step_id: int | None) -> list[str]:
tool_name, args = self._extract_tool_info(resp)
if not tool_name:
return []
return self._reasoning.on_tool_usage(tool_name, args, rollout=rollout, step_id=step_id)
# 详细模式:格式化为 emoji 单行(含 Agent 身份)
def _format_tool_card(self, resp: dict[str, Any], *, rollout: str | None) -> str:
tool_name, args = self._extract_tool_info(resp)
if not tool_name:
return ""
emoji, arg_keys = _TOOL_FMT.get(tool_name, ("🔧", ()))
# 提取要展示的参数值
display_arg = ""
for ak in arg_keys:
val = args.get(ak)
if val:
display_arg = str(val).strip()
break
# 构造 Agent 前缀(不加前导 \n,由 _append_reasoning 统一处理换行)
prefix = f"[{rollout}] " if rollout else ""
if display_arg:
return f"{prefix}{emoji} {tool_name}: {display_arg}"
return f"{prefix}{emoji} {tool_name}"
def _normalize_key(self, text: str) -> str:
lowered = text.lower()
lowered = re.sub(r"https?://\S+", "", lowered)
lowered = re.sub(r"[^\w\u4e00-\u9fff]+", "", lowered)
return lowered
__all__ = [
"build_chat_payload",
"classify_line",
"FrameEvent",
"StreamAdapter",
]
|