Spaces:
Sleeping
Sleeping
File size: 8,479 Bytes
718f7a2 bf67d84 718f7a2 f1c8c0c 718f7a2 bf67d84 718f7a2 | 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 | """阶段 3 chat 端点: 接 LangGraph agent, 完整 AG-UI 9 类事件.
事件流顺序 (典型):
thinking {content: "用户在询问财务数据..."}
agent_step {node: "route", status: "running"}
agent_step {node: "route", status: "done"}
retrieval {doc_ids: [...], scores: [...]}
citation {doc_id, page, snippet, score}
token {content: "..."} (多次, 流式)
agent_step {node: "evaluate", status: "done"}
done {usage, total_ms}
"""
from __future__ import annotations
import asyncio
import json
import logging
import time
import uuid
from collections.abc import AsyncIterator
from fastapi import APIRouter, HTTPException
from fastapi.responses import StreamingResponse
from langchain_core.messages import HumanMessage
from app.agents.graph import get_compiled_graph
from app.agents.nodes import answer_node_stream
from app.agents.state import empty_state_for
from app.config import settings
from app.llm.base import LLMMessage
from app.llm.factory import get_llm
from app.models import db
from app.models.schemas import ChatRequest, ChatResponse
from app.services.persist import schedule_push
from app.streaming.events import (
sse_done,
sse_error,
sse_format,
EV_AGENT_STEP,
EV_CITATION,
EV_DONE,
EV_ERROR,
EV_PROGRESS,
EV_RETRIEVAL,
EV_THINKING,
EV_TOKEN,
EV_TOOL_CALL,
)
logger = logging.getLogger(__name__)
router = APIRouter(prefix="/chat", tags=["chat"])
# ========== 兜底: 阶段 1 简单直答 (route=direct / 无 agent) ==========
_FALLBACK_SYSTEM = (
"你是一个有帮助的中文 AI 助手。"
"回答应简洁、准确、礼貌。如不知道答案请直接说明。"
)
@router.post("", response_model=ChatResponse)
async def chat_simple(req: ChatRequest) -> ChatResponse:
"""非流式 chat: 跑完整 agent 但收集完整结果再返."""
started = time.time()
try:
final_state, events_log = await _run_agent(req)
except Exception as e: # noqa: BLE001
logger.exception("chat failed")
raise HTTPException(status_code=502, detail=str(e)) from e
answer = final_state.get("final_answer") or "(无回答)"
return ChatResponse(
session_id=req.session_id,
message_id=uuid.uuid4().hex,
content=answer,
citations=final_state.get("citations", []),
agent_steps=events_log,
usage={}, # 阶段 3 暂不聚合
total_ms=int((time.time() - started) * 1000),
)
@router.post("/stream")
async def chat_stream(req: ChatRequest) -> StreamingResponse:
"""SSE 流式 chat: 完整 AG-UI 事件."""
return StreamingResponse(
_agent_event_stream(req),
media_type="text/event-stream",
headers={
"Cache-Control": "no-cache, no-transform",
"X-Accel-Buffering": "no", # 关闭 nginx 缓冲
},
)
# ========== 核心: 跑 agent + 产生 SSE 事件 ==========
async def _agent_event_stream(req: ChatRequest) -> AsyncIterator[str]:
"""驱动 agent + 把过程映射为 AG-UI 事件."""
queue: asyncio.Queue[tuple[str, dict] | None] = asyncio.Queue(maxsize=256)
async def emit(event: str, data: dict) -> None:
await queue.put((event, data))
async def runner() -> None:
try:
await _run_agent(req, emit=emit)
except Exception as e: # noqa: BLE001
logger.exception("agent runner failed")
await emit(EV_ERROR, {"code": "agent_failed", "message": str(e), "retryable": True})
finally:
await queue.put(None)
task = asyncio.create_task(runner())
# 启动心跳
started = time.time()
try:
while True:
try:
item = await asyncio.wait_for(queue.get(), timeout=15.0)
except asyncio.TimeoutError:
# 心跳
yield ": keepalive\n\n"
continue
if item is None:
break
event, data = item
yield sse_format(event, data)
finally:
if not task.done():
task.cancel()
# done
yield sse_done(total_ms=int((time.time() - started) * 1000))
async def _run_agent(
req: ChatRequest,
emit=None, # async callable | None
) -> tuple[dict, list[dict]]:
"""执行 agent. emit 可选, 用于 SSE 推送中间事件.
Returns:
(final_state_dict, events_log)
"""
started = time.time()
events_log: list[dict] = []
async def _emit(event: str, data: dict) -> None:
if emit is not None:
await emit(event, data)
events_log.append({"event": event, "data": data, "ts": time.time()})
# 1. 加载历史消息
history_rows = db.message_list_by_session(req.session_id, limit=20)
from app.agents.state import messages_to_lc
history_msgs = messages_to_lc([
{"role": r["role"], "content": r["content"]}
for r in history_rows
])
# 2. 添加本轮 user message
new_user_msg = HumanMessage(content=req.message)
history_msgs.append(new_user_msg)
# 3. 初始化 state
state = empty_state_for(req.session_id, locale=req.locale)
state["messages"] = history_msgs
# 4. 记录 user message 到 SQLite
# - 若 session 还没有 title 且这是首条 user 消息, 自动从前 30 字生成
existing = db.session_get(req.session_id)
auto_title = None
if existing is None or not existing.get("title"):
from app.api.sessions import _auto_title
auto_title = _auto_title(req.message)
db.session_upsert(req.session_id, title=auto_title)
db.message_insert({
"id": uuid.uuid4().hex,
"session_id": req.session_id,
"role": "user",
"content": req.message,
})
# 5. 跑 LangGraph (retrieval loop)
try:
graph = await get_compiled_graph()
except Exception as e: # noqa: BLE001
await _emit(EV_ERROR, {"code": "graph_init_failed", "message": str(e)})
raise
config = {"configurable": {"thread_id": req.session_id}}
final_state: dict = dict(state)
# 直接用 graph.ainvoke, 拿最终 state
try:
result = await graph.ainvoke(state, config=config)
final_state.update(result)
except Exception as e: # noqa: BLE001
logger.exception("graph.ainvoke failed")
await _emit(EV_ERROR, {"code": "graph_failed", "message": str(e)})
raise
# 6. 推送检索事件
if final_state.get("retrieved_doc_ids"):
await _emit(EV_RETRIEVAL, {
"doc_ids": final_state["retrieved_doc_ids"],
"count": len(final_state.get("retrieved", [])),
"scores": [round(h.score, 4) for h in final_state.get("retrieved", [])[:10]],
})
if final_state.get("citations"):
await _emit(EV_PROGRESS, {"pct": 60, "label": "已生成引用, 正在回答..."})
# 7. 跑 answer 流式 (直接调 LLM, 不走 graph)
await _emit(EV_AGENT_STEP, {"node": "answer", "status": "running"})
async def _on_token(content: str) -> None:
await _emit(EV_TOKEN, {"content": content})
async def _on_citation(c: dict) -> None:
await _emit(EV_CITATION, c)
async def _on_thinking(content: str) -> None:
await _emit(EV_THINKING, {"content": content})
answer_update = await answer_node_stream(
final_state,
on_token=_on_token,
on_citation=_on_citation,
on_thinking=_on_thinking,
)
final_state.update(answer_update)
await _emit(EV_AGENT_STEP, {"node": "answer", "status": "done"})
await _emit(EV_PROGRESS, {"pct": 100, "label": "完成"})
# 8. 记录 assistant message 到 SQLite
elapsed = int((time.time() - started) * 1000)
db.message_insert({
"id": uuid.uuid4().hex,
"session_id": req.session_id,
"role": "assistant",
"content": final_state.get("final_answer", ""),
"citations": final_state.get("citations", []),
})
# 9. ⚠️ 关键: 把 session/message 写完 → 调度 persist push (5s debounce).
# 不调的话: 写本地 /data/sqlite/app.db → Space 重启 /data 临时卷清空 →
# 历史对话全丢. 5s debounce 够合并同一 session 的 user+assistant 写入.
try:
await schedule_push()
except Exception as e: # noqa: BLE001
logger.warning("schedule_push after chat failed: %s", e)
return final_state, events_log
|