Spaces:
Running
Running
File size: 21,246 Bytes
1441fa0 2745e27 1441fa0 db45c50 1441fa0 4d2a2da 05c89bc db45c50 1441fa0 4d2a2da 1441fa0 4d2a2da 1441fa0 05c89bc 4d2a2da 1441fa0 05c89bc 1441fa0 05c89bc 4d2a2da 05c89bc 1441fa0 4d2a2da b8f74c0 1441fa0 b8f74c0 1441fa0 b8f74c0 05c89bc b8f74c0 1441fa0 b8f74c0 1441fa0 b8f74c0 1441fa0 b8f74c0 1441fa0 4d2a2da b8f74c0 1441fa0 b8f74c0 1441fa0 b8f74c0 1441fa0 b8f74c0 1441fa0 b8f74c0 1441fa0 82024c3 1441fa0 82024c3 1441fa0 82024c3 1441fa0 82024c3 1441fa0 82024c3 1441fa0 82024c3 1441fa0 82024c3 1441fa0 82024c3 b8f74c0 1441fa0 b8f74c0 1441fa0 b8f74c0 1441fa0 b8f74c0 1441fa0 b8f74c0 1441fa0 b8f74c0 1441fa0 fdc3773 2745e27 b8f74c0 2745e27 b8f74c0 2745e27 b8f74c0 2745e27 b8f74c0 2745e27 b8f74c0 fdc3773 2745e27 1441fa0 db45c50 1441fa0 b8f74c0 1441fa0 | 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 | """Plan-and-Execute agent router using LangGraph.
Replaces the flat ReAct loop with a structured three-phase pipeline:
1. **Planner** β analyses the user query and produces an ordered list of
steps (e.g. "search for exam rules", "search for grading policy",
"compare both").
2. **Executor** β runs each step via a short ReAct sub-graph that has
access to all retrieval tools.
3. **Synthesizer** β collects the results from all executed steps and
produces a final, cited answer.
The separation gives the pipeline *predictable structure* while still
allowing the executor to reason freely within each step.
"""
import json
import logging
import re
from collections.abc import Generator
from typing import TypedDict
from langchain_core.messages import AIMessage, HumanMessage, SystemMessage
from langchain_core.runnables import Runnable
from langgraph.graph import END, StateGraph
from langgraph.prebuilt import create_react_agent
from src.agent.memory import ConversationMemory
from src.agent.prompts import get_prompt
from src.agent.token_budget import measure as _measure_tokens
from src.agent.tools import ToolResultStore, detect_document_languages, make_retrieval_tools
from src.models import GenerationResponse, IntentType, PipelineDetails
from src.retrieval.hybrid import HybridRetriever
from src.retrieval.reranker import Reranker
from src.retrieval.vector_store import VectorStore
logger = logging.getLogger(__name__)
_MAX_STEPS = 6
# ------------------------------------------------------------------
# Prompts (loaded from src/agent/prompts/*.yaml)
# ------------------------------------------------------------------
_PLANNER_PROMPT = get_prompt("planner").template
_EXECUTOR_SYSTEM = get_prompt("executor_system").template
_SYNTHESIZER_PROMPT = get_prompt("synthesizer").template
# ------------------------------------------------------------------
# Graph state
# ------------------------------------------------------------------
class PlanStep(TypedDict):
"""A single step in the execution plan."""
action: str
detail: str
class PlanExecState(TypedDict):
"""State for the Plan-and-Execute graph.
Attributes:
query: The user's original question.
top_k: Number of results per retrieval call.
plan: Ordered list of steps produced by the planner.
step_index: Index of the next step to execute.
step_results: List of (step_description, result_text) pairs.
answer: Final synthesised answer.
"""
query: str
top_k: int
plan: list[PlanStep]
step_index: int
step_results: list[tuple[str, str]]
answer: str
# ------------------------------------------------------------------
# Router class
# ------------------------------------------------------------------
class PlanAndExecuteRouter:
"""Routes queries through a Plan-and-Execute pipeline.
Graph topology::
plan β should_execute? ββ¬β yes β execute_step β should_execute?
ββ no β synthesize β END
"""
def __init__(
self,
llm: Runnable,
hybrid_retriever: HybridRetriever,
reranker: Reranker,
vector_store: VectorStore,
default_top_k: int = 5,
memory: ConversationMemory | None = None,
document_languages: list[str] | None = None,
token_budget_enabled: bool = False,
) -> None:
"""Initialise the Plan-and-Execute router.
Args:
llm: LLM with tool-calling support.
hybrid_retriever: HybridRetriever instance.
reranker: Reranker instance.
vector_store: VectorStore instance.
default_top_k: Default number of results per retrieval call.
memory: Optional ConversationMemory for multi-turn context.
When provided, prior conversation history is injected into
planner and synthesizer prompts, and each completed turn
is automatically recorded.
document_languages: Optional pre-detected list of corpus
languages. When omitted, the router lazily detects them
from the vector store on first use via the LLM.
"""
self._llm = llm
self._hybrid_retriever = hybrid_retriever
self._reranker = reranker
self._vector_store = vector_store
self._default_top_k = default_top_k
self._memory = memory or ConversationMemory()
self._document_languages: list[str] | None = (
list(document_languages) if document_languages else None
)
self._token_budget_enabled = token_budget_enabled
def _ensure_document_languages(self) -> list[str]:
"""Lazily detect and cache the document corpus languages via the LLM.
Returns:
List of detected language names (e.g. ``["Danish"]`` or
``["Danish", "English"]``). Empty list when the corpus is empty
or no readable text could be sampled.
"""
if self._document_languages is not None:
return self._document_languages
self._document_languages = detect_document_languages(self._vector_store, self._llm)
if self._document_languages:
logger.info("Detected document corpus languages: %s", self._document_languages)
return self._document_languages
# ------------------------------------------------------------------
# Node functions
# ------------------------------------------------------------------
def _plan_node(self, state: PlanExecState) -> dict:
"""Generate an execution plan from the user query."""
history = self._memory.format_history()
history_section = ""
if history:
history_section = (
f"Conversation history (for context on follow-up questions):\n"
f"{history}\n\n"
)
prompt = _PLANNER_PROMPT + history_section + f'Question: "{state["query"]}"'
_measure_tokens("planner", prompt, enabled=self._token_budget_enabled)
raw = _extract_content(self._llm.invoke(prompt))
logger.info("Planner raw output: %s", raw)
plan = _parse_plan(raw)
logger.info("Plan: %d steps β %s", len(plan), plan)
return {"plan": plan, "step_index": 0, "step_results": []}
@staticmethod
def _should_execute(state: PlanExecState) -> str:
"""Decide whether to execute the next step or synthesize."""
if state["step_index"] < len(state["plan"]) and state["step_index"] < _MAX_STEPS:
return "execute"
return "synthesize"
def _make_execute_step_node(self, store: ToolResultStore):
"""Create an execute_step node closure bound to a request-scoped store.
Args:
store: ToolResultStore for this specific request.
Returns:
Node function for LangGraph.
"""
def _execute_step_node(state: PlanExecState) -> dict:
idx = state["step_index"]
step = state["plan"][idx]
step_desc = f'{step["action"]}: {step["detail"]}'
logger.info("Executing step %d/%d: %s", idx + 1, len(state["plan"]), step_desc)
tools = make_retrieval_tools(
self._hybrid_retriever,
self._reranker,
self._vector_store,
store,
self._default_top_k,
llm_chain=self._llm,
document_languages=self._ensure_document_languages(),
)
sub_agent = create_react_agent(self._llm, tools)
step_prompt = (
f'Step to execute: {step_desc}\n\n'
f'Original user question (for context): {state["query"]}'
)
result = sub_agent.invoke({
"messages": [
SystemMessage(content=_EXECUTOR_SYSTEM),
HumanMessage(content=step_prompt),
]
})
answer = _extract_last_ai_text(result.get("messages", []))
logger.info("Step %d result: %s", idx + 1, answer[:200])
new_results = list(state["step_results"]) + [(step_desc, answer)]
return {"step_index": idx + 1, "step_results": new_results}
return _execute_step_node
def _synthesize_node(self, state: PlanExecState) -> dict:
"""Synthesize a final answer from all step results."""
step_texts = []
for i, (desc, result) in enumerate(state["step_results"], 1):
step_texts.append(f"### Step {i}: {desc}\n{result}")
gathered = "\n\n".join(step_texts)
history = self._memory.format_history()
history_section = ""
if history:
history_section = (
f"Prior conversation:\n{history}\n\n"
)
prompt = (
f"{_SYNTHESIZER_PROMPT}"
f"{history_section}"
f"Original question: {state['query']}\n\n"
f"Research results:\n{gathered}\n\n"
f"Answer:"
)
_measure_tokens("synthesizer", prompt, enabled=self._token_budget_enabled)
answer = _extract_content(self._llm.invoke(prompt))
logger.info("Synthesized final answer (%d chars)", len(answer))
return {"answer": answer}
# ------------------------------------------------------------------
# Graph construction
# ------------------------------------------------------------------
def _build_graph(self, store: ToolResultStore) -> object:
"""Build the Plan-and-Execute LangGraph.
Args:
store: Request-scoped ToolResultStore for this invocation.
Returns:
Compiled LangGraph.
"""
graph: StateGraph = StateGraph(PlanExecState)
graph.add_node("plan", self._plan_node)
graph.add_node("execute_step", self._make_execute_step_node(store))
graph.add_node("synthesize", self._synthesize_node)
graph.set_entry_point("plan")
graph.add_conditional_edges(
"plan",
self._should_execute,
{"execute": "execute_step", "synthesize": "synthesize"},
)
graph.add_conditional_edges(
"execute_step",
self._should_execute,
{"execute": "execute_step", "synthesize": "synthesize"},
)
graph.add_edge("synthesize", END)
return graph.compile()
# ------------------------------------------------------------------
# Public interface (mirrors QueryRouter)
# ------------------------------------------------------------------
def route(
self,
query: str,
top_k: int,
memory: ConversationMemory | None = None,
) -> GenerationResponse:
"""Route a query through the Plan-and-Execute pipeline.
Args:
query: The user's natural language query.
top_k: Number of top documents to retrieve per tool call.
memory: Optional per-session memory override. When provided
this memory is used instead of the router's default memory.
Returns:
GenerationResponse with answer, sources, intent, and confidence.
"""
original_memory = self._memory
if memory is not None:
self._memory = memory
try:
logger.info("PlanExec routing query: %s", query)
store = ToolResultStore()
initial_state = PlanExecState(
query=query,
top_k=top_k,
plan=[],
step_index=0,
step_results=[],
answer="",
)
graph = self._build_graph(store)
final_state: PlanExecState = graph.invoke(initial_state)
sources = store.retrieved[:top_k]
confidence = max((r.score for r in sources), default=0.0)
plan_step_strs = [
f'{s["action"]}: {s["detail"]}' for s in final_state.get("plan", [])
]
tool_call_strs = [f"{name}: {arg}" for name, arg in store.tool_calls]
response = GenerationResponse(
answer=final_state["answer"],
sources=sources,
intent=IntentType.RAG if sources else IntentType.FACTUAL,
confidence=confidence,
pipeline_details=PipelineDetails(
original_query=query,
retrieval_query=", ".join(
q for name, q in store.tool_calls if name == "hybrid_search"
) or query,
dense_results=store.dense_results,
sparse_results=store.sparse_results,
fused_results=store.fused_results,
reranked_results=sources,
plan_steps=plan_step_strs,
tool_calls=tool_call_strs,
),
)
self._memory.add_turn(query, response.answer, sources)
return response
finally:
self._memory = original_memory
def route_stream(
self,
query: str,
top_k: int,
memory: ConversationMemory | None = None,
) -> Generator[dict, None, None]:
"""Stream Plan-and-Execute events step by step.
Yields event dicts with step types:
- ``plan`` β plan was generated; carries ``steps``.
- ``execute_step`` β a step was executed; carries ``step_index``,
``step_desc``, ``result_preview``.
- ``synthesize`` β final answer generated.
- ``done`` β final event with full result payload.
Args:
query: User query.
top_k: Number of results to retrieve per tool call.
memory: Optional per-session memory override.
Yields:
Step event dicts.
"""
original_memory = self._memory
if memory is not None:
self._memory = memory
try:
yield from self._route_stream_inner(query, top_k)
finally:
self._memory = original_memory
def _route_stream_inner(self, query: str, top_k: int) -> Generator[dict, None, None]:
"""Internal streaming implementation."""
store = ToolResultStore()
initial_state = PlanExecState(
query=query,
top_k=top_k,
plan=[],
step_index=0,
step_results=[],
answer="",
)
graph = self._build_graph(store)
accumulated: dict = dict(initial_state)
for chunk in graph.stream(initial_state, stream_mode="updates"):
for node_name, update in chunk.items():
if update is None:
continue
accumulated.update(update)
if node_name == "plan":
yield {
"step": "plan",
"steps": [
f'{s["action"]}: {s["detail"]}'
for s in update.get("plan", [])
],
}
elif node_name == "execute_step":
results = update.get("step_results", [])
if results:
last_desc, last_result = results[-1]
yield {
"step": "execute_step",
"step_index": update.get("step_index", 0),
"step_desc": last_desc,
"result_preview": last_result[:300],
}
elif node_name == "synthesize":
yield {"step": "synthesize"}
sources = store.retrieved[:top_k]
confidence = max((r.score for r in sources), default=0.0)
answer = accumulated.get("answer", "")
self._memory.add_turn(query, answer, sources)
yield {
"step": "done",
"result": {
"answer": answer,
"sources": [r.to_dict() for r in sources],
"intent": (IntentType.RAG if sources else IntentType.FACTUAL).value,
"confidence": confidence,
"pipeline_details": {
"original_query": query,
"retrieval_query": ", ".join(
q for name, q in store.tool_calls if name == "hybrid_search"
) or query,
"detected_language": "",
"translated": False,
"dense_results": [r.to_dict(include_text=False) for r in store.dense_results],
"sparse_results": [r.to_dict(include_text=False) for r in store.sparse_results],
"fused_results": [r.to_dict(include_text=False) for r in store.fused_results],
"reranked_results": [r.to_dict(include_text=False) for r in sources],
"plan_steps": [
f'{s["action"]}: {s["detail"]}'
for s in accumulated.get("plan", [])
],
"tool_calls": [f"{n}: {a}" for n, a in store.tool_calls],
},
},
}
# ------------------------------------------------------------------
# Helpers
# ------------------------------------------------------------------
_THINK_CLOSED_RE = re.compile(r"<think>.*?</think>\s*", re.DOTALL)
_THINK_UNCLOSED_RE = re.compile(r"<think>.*", re.DOTALL)
def _strip_think(text: str) -> str:
"""Remove ``<think>`` blocks β both closed and unclosed.
Some models (Qwen3) always emit ``<think>...</think>``; others may
leave the tag unclosed. This handles both cases.
"""
text = _THINK_CLOSED_RE.sub("", text)
text = _THINK_UNCLOSED_RE.sub("", text)
return text.strip()
def _extract_content(result: object) -> str:
"""Extract plain text from an LLM invoke result.
Handles:
- AIMessage with ``content: str``
- AIMessage with ``content: list[str | dict]`` (some providers)
- Plain strings (e.g. from StrOutputParser or test mocks)
Args:
result: Return value of ``llm.invoke()`` or ``chain.invoke()``.
Returns:
Cleaned text with ``<think>`` blocks removed.
"""
if hasattr(result, "content"):
content = result.content
else:
content = result
if isinstance(content, list):
parts: list[str] = []
for block in content:
if isinstance(block, str):
parts.append(block)
elif isinstance(block, dict) and "text" in block:
parts.append(block["text"])
text = "\n".join(parts)
else:
text = str(content)
return _strip_think(text)
def _parse_plan(raw: str) -> list[PlanStep]:
"""Parse the planner's JSON output into a list of PlanStep dicts.
Robust against markdown fences, trailing text, and minor formatting issues.
Args:
raw: Raw LLM output expected to contain a JSON array.
Returns:
List of PlanStep dicts. Falls back to a single search step on failure.
"""
# Strip markdown code fences if present
cleaned = raw.strip()
if cleaned.startswith("```"):
lines = cleaned.splitlines()
# Remove opening and closing fences
lines = [line for line in lines if not line.strip().startswith("```")]
cleaned = "\n".join(lines).strip()
try:
parsed = json.loads(cleaned)
except json.JSONDecodeError:
# Try to extract a JSON array from the text
start = cleaned.find("[")
end = cleaned.rfind("]")
if start != -1 and end != -1:
try:
parsed = json.loads(cleaned[start:end + 1])
except json.JSONDecodeError:
logger.warning("Failed to parse plan, falling back to single search")
return [PlanStep(action="search", detail=cleaned[:200])]
else:
logger.warning("No JSON array found in plan output, falling back")
return [PlanStep(action="search", detail=cleaned[:200])]
if not isinstance(parsed, list):
logger.warning("Plan is not a list, wrapping")
parsed = [parsed]
steps: list[PlanStep] = []
for item in parsed:
if isinstance(item, dict) and "action" in item and "detail" in item:
steps.append(PlanStep(action=str(item["action"]), detail=str(item["detail"])))
else:
logger.warning("Skipping malformed plan step: %s", item)
if not steps:
return [PlanStep(action="search", detail="general search")]
return steps
def _extract_last_ai_text(messages: list) -> str:
"""Return the text content of the last non-tool-call AI message.
Args:
messages: List of LangChain message objects.
Returns:
The extracted text, or empty string if none found.
"""
for msg in reversed(messages):
if (
isinstance(msg, AIMessage)
and msg.content
and not getattr(msg, "tool_calls", None)
):
return _extract_content(msg)
return ""
|