Spaces:
Sleeping
Sleeping
File size: 28,969 Bytes
d0d2f42 | 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 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 | """
DocOps Agent — Sistema multiagente con LangGraph
Clase 11: Orquestación supervisor-workers con bucle de calidad
Clase 12: Memoria persistente y Human-in-the-Loop
Usa GPT-OSS-120B vía Groq (OpenAI-compatible endpoint)
"""
import json
import logging
import os
import operator
from pathlib import Path
from typing import Literal
from typing_extensions import TypedDict, Annotated, NotRequired
from dotenv import load_dotenv
from pydantic import BaseModel, Field
from langchain_openai import ChatOpenAI
from langchain_core.messages import (
AnyMessage,
SystemMessage,
HumanMessage,
)
from langgraph.graph import StateGraph, START, END
# ─── NUEVOS IMPORTS CLASE 12 ───
from memory.store import checkpointer
from agents.hitl import human_gate
from langgraph.types import Command
# RAG pipeline (clases 5-7)
from rag.vectorstore import create_vectorstore, search as vector_search, SearchResult
from rag.ingestion import load_directory, chunk_by_paragraphs, Chunk
from rag.retrieval import HybridRetriever, rerank
logger = logging.getLogger(__name__)
load_dotenv()
# ─── Colores ANSI ───────────────────────────────────────────
_BOLD = "\033[1m"
_DIM = "\033[2m"
_RESET = "\033[0m"
_BLUE = "\033[34m"
_CYAN = "\033[36m"
_YELLOW = "\033[33m"
_MAGENTA = "\033[35m"
_GREEN = "\033[32m"
_RED = "\033[31m"
_WHITE = "\033[97m"
# ─── Metadata de agentes (color, icono, descripción) ────────
AGENT_META = {
"planner": {
"color": _BLUE,
"icon": "📋",
"label": "PLANNER",
"desc": "Analiza la consulta y genera un plan de acción estructurado",
},
"retriever": {
"color": _CYAN,
"icon": "🔍",
"label": "RETRIEVER",
"desc": "Busca documentos relevantes en el vector store según el plan",
},
"executor": {
"color": _YELLOW,
"icon": "⚙️",
"label": "EXECUTOR",
"desc": "Genera la respuesta basándose en el plan y los documentos",
},
"verifier": {
"color": _MAGENTA,
"icon": "✅",
"label": "VERIFIER",
"desc": "Evalúa la calidad de la respuesta y decide si aceptar o revisar",
},
}
# ─── LLM via Groq (OpenAI-compatible) ───────────────────────
llm = ChatOpenAI(
model=os.getenv("GROQ_MODEL", "openai/gpt-oss-120b"),
api_key=os.getenv("GROQ_API_KEY"),
base_url=os.getenv("GROQ_BASE_URL", "https://api.groq.com/openai/v1"),
temperature=0,
max_tokens=2048,
)
# LLM de respaldo (modelo más pequeño/económico en Groq)
fallback_llm = ChatOpenAI(
model=os.getenv("GROQ_FALLBACK_MODEL", "llama-3.3-70b-versatile"),
api_key=os.getenv("GROQ_API_KEY"),
base_url=os.getenv("GROQ_BASE_URL", "https://api.groq.com/openai/v1"),
temperature=0,
max_tokens=1024,
)
# ─── ESTADO COMPARTIDO ──────────────────────────────────────
class DocOpsState(TypedDict):
"""Estado compartido entre todos los agentes del sistema."""
messages: Annotated[list[AnyMessage], operator.add]
plan: str # Resultado del Planner
search_results: str # Resultado del Retriever
draft: str # Resultado del Executor
feedback: str # Resultado del Verifier
quality_score: float # Resultado del Verifier
iteration: int
force_review: NotRequired[bool] # Clase 12: forzar pausa HITL siempre
# ─── CONTRATOS (Structured Output) ──────────────────────────
class QualityCheck(BaseModel):
"""Contrato de salida del Verifier."""
score: float = Field(
description="Score de calidad de 0.0 a 1.0. "
"1.0 = respuesta perfecta, 0.0 = inaceptable."
)
feedback: str = Field(
description="Retroalimentación específica si el score es menor a 0.8. "
"Indica qué mejorar concretamente."
)
decision: Literal["accept", "revise"] = Field(
description="'accept' si score >= 0.8, 'revise' si necesita mejora."
)
# ─── AGENTE 1: PLANNER ──────────────────────────────────────
def planner_agent(state: DocOpsState) -> dict:
"""
Analiza la consulta del usuario y genera un plan estructurado.
No busca información — solo planifica los pasos a seguir.
"""
user_query = state["messages"][-1].content
response = llm.invoke([
SystemMessage(content=(
"Eres un planificador experto para un sistema de consulta de documentos. "
"Tu trabajo es analizar la consulta del usuario y generar un plan claro "
"con los pasos necesarios para responderla.\n\n"
"Reglas:\n"
"- Identifica qué información necesitas buscar\n"
"- Define los criterios de una buena respuesta\n"
"- Sé específico sobre qué buscar en los documentos\n"
"- Responde SOLO con el plan, sin ejecutar ningún paso"
)),
HumanMessage(content=f"Genera un plan para responder: {user_query}")
])
return {"plan": response.content, "iteration": 0}
# ─── RAG: carga de colección e índice ────────────────────────
PROJECT_ROOT = Path(__file__).resolve().parent.parent
_CHROMA_DIR = str(PROJECT_ROOT / "chroma_db")
_DATA_DIR = str(PROJECT_ROOT / "data")
_COLLECTION_NAME = "docops_multiagent"
_collection = None
_chunks: list[Chunk] = []
def _get_rag_resources():
"""Inicializa (lazy) la colección ChromaDB y los chunks para el retriever."""
global _collection, _chunks
if _collection is not None:
return _collection, _chunks
# 1. Abrir o crear la colección
_collection = create_vectorstore(_COLLECTION_NAME, _CHROMA_DIR)
# 2. Si la colección está vacía, indexar los documentos de /data
if _collection.count() == 0:
docs = load_directory(_DATA_DIR)
if docs:
from rag.vectorstore import index_chunks
all_chunks: list[Chunk] = []
for doc in docs:
all_chunks.extend(chunk_by_paragraphs(doc, max_chunk_size=500))
index_chunks(_collection, all_chunks)
_chunks = all_chunks
logger.info(
"Indexados %d chunks de %d documentos en '%s'",
len(all_chunks), len(docs), _COLLECTION_NAME,
)
else:
logger.warning("No se encontraron documentos en %s", _DATA_DIR)
else:
# Colección ya tiene datos — reconstruir chunks para BM25
all_data = _collection.get(include=["documents", "metadatas"])
_chunks = [
Chunk(
content=doc,
metadata=meta,
chunk_id=cid,
)
for cid, doc, meta in zip(
all_data["ids"], all_data["documents"], all_data["metadatas"]
)
]
logger.info(
"Colección '%s' cargada con %d chunks existentes",
_COLLECTION_NAME, len(_chunks),
)
return _collection, _chunks
# ─── AGENTE 2: RETRIEVER ────────────────────────────────────
def retriever_agent(state: DocOpsState) -> dict:
"""
Busca información relevante usando el pipeline RAG (clases 5-7).
Pipeline:
1. Búsqueda híbrida (BM25 + vector) vía HybridRetriever
2. Reranking con cross-encoder
3. Formato de contexto con fuentes
Fallback: si el RAG falla, usa el LLM para simular resultados.
"""
query = state["messages"][-1].content
plan = state["plan"]
search_query = f"{query} {plan[:200]}"
try:
collection, chunks = _get_rag_resources()
if not chunks:
raise ValueError("No hay chunks indexados en la colección")
# Paso 1: Búsqueda híbrida (BM25 + vector, clase 6)
hybrid = HybridRetriever(collection, chunks, alpha=0.5)
results: list[SearchResult] = hybrid.search(search_query, top_k=10)
if not results:
raise ValueError("Búsqueda híbrida no retornó resultados")
# Paso 2: Reranking con cross-encoder (clase 6)
reranked = rerank(query, results, top_k=5)
# Paso 3: Formatear contexto con fuentes
context_parts = []
for i, r in enumerate(reranked, 1):
source = r.metadata.get("source", "desconocida")
score = f"{r.score:.3f}"
context_parts.append(
f"[{i}] (fuente: {source} | score: {score})\n{r.content}"
)
context = "\n\n---\n\n".join(context_parts)
logger.info(
"Retriever: %d resultados tras reranking (query: %s)",
len(reranked), query[:60],
)
return {"search_results": context}
except Exception as e:
# Fallback: búsqueda simulada con LLM
logger.warning("RAG pipeline falló (%s), usando fallback LLM", e)
response = llm.invoke([
SystemMessage(content=(
"Eres un agente de búsqueda. Dado el siguiente plan, "
"genera información relevante que podría encontrarse en "
"documentos empresariales internos. Simula resultados de búsqueda "
"realistas y útiles.\n\n"
"Formato: Presenta 3-5 fragmentos de documentos relevantes, "
"cada uno con su fuente ficticia."
)),
HumanMessage(content=f"Plan de búsqueda:\n{plan}")
])
return {
"search_results": (
f"[Fallback — resultados simulados por LLM]\n\n"
f"{response.content}"
)
}
# ─── AGENTE 3: EXECUTOR (con fallback) ──────────────────────
def executor_agent(state: DocOpsState) -> dict:
"""
Genera la respuesta usando el plan y los documentos recuperados.
Incluye fallback a modelo más pequeño si el principal falla.
"""
# Si hay feedback de una iteración anterior, incluirlo
feedback_section = ""
if state.get("feedback") and state["iteration"] > 0:
feedback_section = (
f"\n\nFEEDBACK DE REVISIÓN ANTERIOR (iteración {state['iteration']}):\n"
f"{state['feedback']}\n"
"Corrige los problemas señalados en el feedback."
)
prompt_content = (
f"Plan:\n{state['plan']}\n\n"
f"Documentos encontrados:\n{state['search_results']}\n\n"
f"Consulta original: {state['messages'][-1].content}"
f"{feedback_section}"
)
try:
# Intento principal con modelo fuerte (GPT-OSS-120B)
response = llm.invoke([
SystemMessage(content=(
"Eres un asistente experto que genera respuestas precisas "
"basándose en documentos internos. Tu respuesta debe:\n"
"- Ser fiel a la información de los documentos (no inventar)\n"
"- Citar las fuentes cuando sea posible\n"
"- Ser clara, estructurada y completa\n"
"- Responder directamente a la consulta del usuario"
)),
HumanMessage(content=prompt_content)
])
return {"draft": response.content}
except Exception as e:
# Fallback a modelo más económico (llama-3.3-70b)
try:
response = fallback_llm.invoke([
SystemMessage(content=(
"Genera una respuesta concisa basada en el contexto."
)),
HumanMessage(content=prompt_content)
])
return {
"draft": (
f"[Generado con modelo de respaldo]\n\n"
f"{response.content}"
)
}
except Exception as e2:
# Último recurso: respuesta degradada
return {
"draft": (
f"No pude generar una respuesta completa. "
f"Error: {str(e2)[:200]}\n\n"
f"Documentos encontrados:\n"
f"{state['search_results'][:500]}"
),
"quality_score": 0.3,
}
# ─── AGENTE 4: VERIFIER ─────────────────────────────────────
def verifier_agent(state: DocOpsState) -> dict:
"""
Evalúa la calidad del borrador y decide si aceptar o pedir revisión.
Usa structured output para garantizar formato consistente.
"""
quality_checker = llm.with_structured_output(QualityCheck)
try:
check = quality_checker.invoke([
SystemMessage(content=(
"Eres un verificador de calidad. Evalúa la respuesta generada "
"contra los documentos fuente y la consulta original.\n\n"
"Criterios de evaluación:\n"
"- Fidelidad: ¿La respuesta es fiel a los documentos?\n"
"- Completitud: ¿Responde toda la consulta?\n"
"- Claridad: ¿Es clara y bien estructurada?\n"
"- Relevancia: ¿Incluye solo información pertinente?\n\n"
"Score:\n"
"- 0.9-1.0: Excelente, aceptar\n"
"- 0.8-0.89: Buena, aceptar\n"
"- 0.6-0.79: Necesita mejora, revisar con feedback\n"
"- <0.6: Mala, revisar con feedback detallado"
)),
HumanMessage(content=(
f"CONSULTA: {state['messages'][-1].content}\n\n"
f"DOCUMENTOS:\n{state['search_results']}\n\n"
f"RESPUESTA A EVALUAR:\n{state['draft']}"
))
])
return {
"quality_score": check.score,
"feedback": check.feedback,
"iteration": state["iteration"] + 1,
}
except Exception as e:
# Si el structured output falla, aceptar con score medio
return {
"quality_score": 0.7,
"feedback": f"Verificación falló: {str(e)[:200]}",
"iteration": state["iteration"] + 1,
}
# ─── ARISTA CONDICIONAL: BUCLE DE CALIDAD ───────────────────
def should_revise(state: DocOpsState) -> Literal["accept", "revise"]:
"""
Decide si la respuesta es aceptable o necesita revisión.
Acepta si:
- quality_score >= 0.8 (calidad suficiente)
- iteration >= 3 (máximo de intentos alcanzado)
Rechaza si:
- quality_score < 0.8 AND iteration < 3
"""
if state["quality_score"] >= 0.8:
return "accept"
if state["iteration"] >= 3:
return "accept"
return "revise"
# ─── CONSTRUCCIÓN DEL GRAFO ─────────────────────────────────
def build_docops_agent(cp=None):
"""
Construye el grafo multiagente del DocOps Agent.
Clase 11: planner → retriever → executor → verifier → END
Clase 12: planner → retriever → executor → verifier → human_gate → END
+ checkpointing + HITL
Args:
cp: Checkpointer a usar. Si es None, usa el global de memory.store.
"""
workflow = StateGraph(DocOpsState)
# Registrar nodos (agentes) — Clase 11
workflow.add_node("planner", planner_agent)
workflow.add_node("retriever", retriever_agent)
workflow.add_node("executor", executor_agent)
workflow.add_node("verifier", verifier_agent)
# NUEVO Clase 12: nodo de aprobación humana
workflow.add_node("human_gate", human_gate)
# Flujo principal (aristas directas)
workflow.add_edge(START, "planner")
workflow.add_edge("planner", "retriever")
workflow.add_edge("retriever", "executor")
workflow.add_edge("executor", "verifier")
# Bucle de calidad (arista condicional)
workflow.add_conditional_edges(
"verifier",
should_revise,
{
"accept": "human_gate", # CAMBIO: antes era END
"revise": "executor",
},
)
# NUEVO Clase 12: human_gate → END
workflow.add_edge("human_gate", END)
# CAMBIO Clase 12: compilar CON checkpointer
return workflow.compile(checkpointer=cp if cp is not None else checkpointer)
# Instancia global del grafo multiagente compilado
docops_agent = build_docops_agent()
# ─── UTILIDADES ──────────────────────────────────────────────
def invoke_docops(
query: str,
thread_id: str = None,
verbose: bool = False,
force_review: bool = False,
) -> dict:
"""
Invoca el sistema multiagente con persistencia y HITL.
Args:
query: Consulta del usuario en lenguaje natural
thread_id: ID del thread (None = generar uno nuevo)
verbose: Si True, imprime el estado de cada paso
Returns:
dict con keys: answer, quality_score, iterations, plan,
interrupted (bool), interrupt_payload (si aplica)
"""
import uuid
if thread_id is None:
thread_id = f"docops-{uuid.uuid4().hex[:8]}"
config = {"configurable": {"thread_id": thread_id}}
initial_state = {
"messages": [HumanMessage(content=query)],
"plan": "",
"search_results": "",
"draft": "",
"feedback": "",
"quality_score": 0.0,
"iteration": 0,
"force_review": force_review,
}
if verbose:
print(f"\n{_BOLD}{_WHITE}{'═'*60}{_RESET}")
print(f"{_BOLD}{_WHITE} 🚀 DOCOPS MULTIAGENTE — INICIO DE EJECUCIÓN{_RESET}")
print(f"{_BOLD}{_WHITE}{'═'*60}{_RESET}")
print(f"{_DIM} Thread: {thread_id}{_RESET}")
print(f"{_DIM} Consulta: {query}{_RESET}")
step = 0
for event in docops_agent.stream(initial_state, config, stream_mode="updates"):
for node_name, node_output in event.items():
step += 1
meta = AGENT_META.get(node_name, {})
color = meta.get("color", _WHITE)
icon = meta.get("icon", "▸")
label = meta.get("label", node_name.upper())
desc = meta.get("desc", "")
print(f"\n{color}{_BOLD}{'─'*60}{_RESET}")
print(f"{color}{_BOLD} {icon} [{step}] {label}{_RESET}")
print(f"{color}{_DIM} {desc}{_RESET}")
print(f"{color}{'─'*60}{_RESET}")
if not node_output or not isinstance(node_output, dict):
continue
for key, value in node_output.items():
if key == "messages":
continue
preview = str(value)[:300]
if key == "quality_score":
score = float(value)
score_color = _GREEN if score >= 0.8 else _RED
print(f" {_DIM}↳ {key}:{_RESET} {score_color}{_BOLD}{preview}{_RESET}")
elif key == "feedback":
print(f" {_DIM}↳ {key}:{_RESET} {_MAGENTA}{preview}{_RESET}")
elif key == "iteration":
print(f" {_DIM}↳ {key}:{_RESET} {_YELLOW}{preview}{_RESET}")
else:
print(f" {_DIM}↳ {key}:{_RESET} {color}{preview}{_RESET}")
print(f"\n{_GREEN}{_BOLD}{'═'*60}{_RESET}")
print(f"{_GREEN}{_BOLD} ✔ EJECUCIÓN COMPLETADA{_RESET}")
print(f"{_GREEN}{_BOLD}{'═'*60}{_RESET}")
result = docops_agent.invoke(initial_state, config)
# Verificar si se interrumpió (HITL)
interrupted = False
interrupt_payload = None
snapshot = docops_agent.get_state(config)
if snapshot.next:
# El grafo se pausó — hay un interrupt pendiente
interrupted = True
# Extraer payload del interrupt
if hasattr(snapshot, "tasks") and snapshot.tasks:
for task in snapshot.tasks:
if hasattr(task, "interrupts") and task.interrupts:
interrupt_payload = task.interrupts[0].value
if verbose:
print(f"\n{'─'*60}")
if interrupted:
print("⏸️ GRAFO PAUSADO — Esperando decisión humana")
if interrupt_payload:
print(f" Riesgo: {interrupt_payload.get('risk_level', '?')}")
print(f" Mensaje: {interrupt_payload.get('message', '')[:200]}")
else:
print("✅ GRAFO COMPLETADO")
print(f"{'─'*60}")
return {
"answer": result.get("draft", ""),
"quality_score": result.get("quality_score", 0.0),
"iterations": result.get("iteration", 0),
"plan": result.get("plan", ""),
"thread_id": thread_id,
"interrupted": interrupted,
"interrupt_payload": interrupt_payload,
}
def resume_docops(
thread_id: str,
decision: dict,
verbose: bool = False,
) -> dict:
"""
Reanuda un grafo pausado con la decisión del humano.
Args:
thread_id: ID del thread pausado
decision: Decisión del humano, por ejemplo:
{"approved": True}
{"approved": True, "edited_draft": "texto corregido"}
{"approved": False, "reason": "información incorrecta"}
verbose: Si True, imprime info de reanudación
Returns:
dict con el resultado final (mismo formato que invoke_docops)
"""
config = {"configurable": {"thread_id": thread_id}}
if verbose:
print(f"Reanudando thread: {thread_id}")
print(f"Decisión: {decision}\n")
result = docops_agent.invoke(Command(resume=decision), config)
return {
"answer": result.get("draft", ""),
"quality_score": result.get("quality_score", 0.0),
"iterations": result.get("iteration", 0),
"thread_id": thread_id,
"interrupted": False,
}
def continue_conversation(
thread_id: str,
follow_up: str,
verbose: bool = False,
) -> dict:
"""
Continúa una conversación existente con un nuevo mensaje.
El historial de la conversación se mantiene gracias al checkpointer.
Args:
thread_id: ID del thread existente
follow_up: Nuevo mensaje del usuario
verbose: Si True, imprime info
Returns:
dict con el resultado (mismo formato que invoke_docops)
"""
config = {"configurable": {"thread_id": thread_id}}
new_state = {
"messages": [HumanMessage(content=follow_up)],
"plan": "",
"search_results": "",
"draft": "",
"feedback": "",
"quality_score": 0.0,
"iteration": 0,
}
if verbose:
print(f"Continuando thread: {thread_id}")
print(f"Follow-up: {follow_up}\n")
result = docops_agent.invoke(new_state, config)
# Verificar interrupciones igual que invoke_docops
snapshot = docops_agent.get_state(config)
interrupted = bool(snapshot.next)
return {
"answer": result.get("draft", ""),
"quality_score": result.get("quality_score", 0.0),
"iterations": result.get("iteration", 0),
"thread_id": thread_id,
"interrupted": interrupted,
}
def visualize_graph():
"""Genera y muestra el diagrama del grafo (requiere IPython)."""
try:
from IPython.display import Image, display
img = docops_agent.get_graph(xray=True).draw_mermaid_png()
display(Image(img))
except ImportError:
print(docops_agent.get_graph(xray=True).draw_mermaid())
# ─── MAIN ────────────────────────────────────────────────────
if __name__ == "__main__":
print(f"\n{_BOLD}{_WHITE}{'═'*60}{_RESET}")
print(f"{_BOLD}{_WHITE} DocOps Agent v2 — Memoria + Human-in-the-Loop{_RESET}")
print(f"{_BOLD}{_WHITE}{'═'*60}{_RESET}")
print(f" Modelo: {os.getenv('GROQ_MODEL', 'gpt-oss-120b')} via Groq")
print(f" Checkpointer: {type(checkpointer).__name__}")
print(f"{_BOLD}{_WHITE}{'═'*60}{_RESET}\n")
# ─── EJEMPLO 1: Flujo automático (sin HITL) ──────────────
print(f"{_BOLD}EJEMPLO 1 — Flujo automático (sin interrupción){_RESET}")
print("─" * 60)
r1 = invoke_docops(
"¿Cuál es la política de reembolso para clientes premium?",
thread_id="demo-auto",
verbose=True,
)
score_c = _GREEN if r1["quality_score"] >= 0.8 else _RED
print(f"\n Score: {score_c}{r1['quality_score']}{_RESET}")
print(f" Interrupted: {r1['interrupted']}")
print(f" Respuesta: {r1['answer'][:200]}...\n")
# ─── EJEMPLO 2: HITL real — TÚ decides ───────────────────
print(f"\n{_BOLD}EJEMPLO 2 — HITL interactivo (force_review=True){_RESET}")
print("─" * 60)
print(f"{_DIM}El agente procesará la consulta y luego SE PAUSARÁ.")
print(f"Tendrás que revisar el draft y tomar una decisión.{_RESET}\n")
r2 = invoke_docops(
"¿Cuál es el proceso para escalar un ticket de soporte?",
thread_id="demo-hitl",
verbose=True,
force_review=True, # ← garantiza la pausa siempre
)
if r2["interrupted"]:
payload = r2.get("interrupt_payload") or {}
print(f"\n{_BOLD}{_YELLOW}{'═'*60}{_RESET}")
print(f"{_BOLD}{_YELLOW} ⏸ GRAFO PAUSADO — El agente espera tu decisión{_RESET}")
print(f"{_BOLD}{_YELLOW}{'═'*60}{_RESET}")
print(f"\n{_DIM}Draft generado por el agente:{_RESET}\n")
draft_preview = payload.get("draft_preview", r2["answer"])
for line in draft_preview[:600].split("\n"):
print(f" {line}")
print(f"\n{_DIM}Nivel de riesgo:{_RESET} {payload.get('risk_level', '?').upper()}")
print(f"{_DIM}Quality score: {_RESET}{r2['quality_score']:.2f}")
print(f"\n{_GREEN} [a]{_RESET} Aprobar y publicar")
print(f"{_YELLOW} [e]{_RESET} Editar el draft y aprobar")
print(f"{_RED} [r]{_RESET} Rechazar")
print(f"{_BOLD}{_YELLOW}{'─'*60}{_RESET}")
# ── Input real del usuario ──
decision = None
while decision is None:
try:
choice = input(f"\n{_BOLD}Tu decisión [a/e/r]: {_RESET}").strip().lower()
except (EOFError, KeyboardInterrupt):
print(f"\n{_DIM}Sin input — aprobando automáticamente.{_RESET}")
decision = {"approved": True}
break
if choice in ("a", ""):
print(f"{_GREEN}✓ Aprobado{_RESET}")
decision = {"approved": True}
elif choice == "e":
print(f"{_YELLOW}Escribe el draft corregido.")
print(f"{_DIM}(Línea con solo '###' para terminar){_RESET}")
lines = []
try:
while True:
line = input()
if line.strip() == "###":
break
lines.append(line)
except EOFError:
pass
edited = "\n".join(lines).strip()
print(f"{_GREEN}✓ Draft editado ({len(edited)} chars){_RESET}")
decision = {"approved": True, "edited_draft": edited}
elif choice == "r":
try:
reason = input(f"{_RED}Motivo del rechazo: {_RESET}").strip()
except (EOFError, KeyboardInterrupt):
reason = "Rechazado por el supervisor"
print(f"{_RED}✗ Rechazado{_RESET}")
decision = {"approved": False, "reason": reason or "Rechazado"}
else:
print(f"{_DIM}Opción no reconocida. Escribe a, e o r.{_RESET}")
# ── Reanudar con la decisión del humano ──
print(f"\n{_DIM}Reanudando con decisión: {decision}{_RESET}")
final = resume_docops("demo-hitl", decision, verbose=True)
print(f"\n{_GREEN}{_BOLD}{'─'*60}{_RESET}")
print(f"{_GREEN}{_BOLD} Respuesta final{_RESET}")
print(f"{_GREEN}{_BOLD}{'─'*60}{_RESET}")
print(final["answer"])
print(f"{_GREEN}{'─'*60}{_RESET}")
else:
# Esto no debería ocurrir con force_review=True
print(f"\n{_DIM}No hubo interrupción (score={r2['quality_score']:.2f}){_RESET}")
print(f"Respuesta: {r2['answer'][:300]}")
|