Spaces:
Sleeping
Sleeping
File size: 6,495 Bytes
ee5d4b7 d4cf06c ee5d4b7 d4cf06c ee5d4b7 d4cf06c ee5d4b7 d4cf06c ee5d4b7 d4cf06c ee5d4b7 d4cf06c ee5d4b7 d4cf06c ee5d4b7 d4cf06c ee5d4b7 d4cf06c ee5d4b7 d4cf06c ee5d4b7 d4cf06c ee5d4b7 d4cf06c ee5d4b7 | 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 | import re
from typing import TypedDict
from langgraph.graph import StateGraph, END
from langchain_groq import ChatGroq
from langchain_core.messages import HumanMessage, AIMessage
from config import GROQ_API_KEY, GROQ_MODEL, MAX_RETRIES
llm = ChatGroq(
model=GROQ_MODEL,
temperature=0,
api_key=GROQ_API_KEY,
)
SAFE_FALLBACK_ANSWER = "I don't have enough information in the provided documents."
LOW_CONFIDENCE_PREFIX = (
"I could not fully validate a confident answer after all retries. "
"Best attempt"
)
def _parse_validation_score(raw_score: str, default: int) -> int:
match = re.search(r"\d+", raw_score)
if not match:
return default
return max(0, min(100, int(match.group(0))))
class RAGState(TypedDict):
question: str
context_chunks: list
answer: str
validation_result: str
validation_score: int
fail_reason: str
retry_count: int
chat_history: list
best_answer: str
best_validation_score: int
best_fail_reason: str
def generate_node(state: RAGState) -> dict:
context_text = "\n\n---\n\n".join(
f"[Source: {r['source']}]\n{r['chunk']}"
for r in state["context_chunks"]
)
history_lines = []
for msg in state.get("chat_history", [])[-6:]:
role = "User" if isinstance(msg, HumanMessage) else "Assistant"
history_lines.append(f"{role}: {msg.content}")
history_text = "\n".join(history_lines) or "None"
correction = ""
if state.get("retry_count", 0) > 0:
correction = (
f"\n\nIMPORTANT CORRECTION REQUIRED: Your previous answer was "
f"rejected because: {state.get('fail_reason', 'unverifiable claims')} "
f"(validation score: {state.get('validation_score', 0)}/100). "
f"Re-answer using ONLY the context provided."
)
prompt = (
"You are an AI assistant that answers questions AND generates content based on provided documents.\n"
"Answer ONLY using information from the CONTEXT below.\n"
"If the answer cannot be found, say exactly: "
'"I don\'t have enough information in the provided documents."\n'
"Do NOT invent facts or use outside knowledge."
+ correction
+ f"\n\nPREVIOUS CONVERSATION:\n{history_text}"
+ f"\n\nCONTEXT:\n{context_text}"
+ f"\n\nQUESTION: {state['question']}\n\nAnswer:"
)
response = llm.invoke([HumanMessage(content=prompt)])
return {"answer": response.content}
def validate_node(state: RAGState) -> dict:
context_text = "\n\n".join(r["chunk"] for r in state["context_chunks"])
prompt = (
"You are a strict hallucination checker for a RAG system.\n\n"
"Given the CONTEXT and the ANSWER below, check:\n"
"1. Is every factual claim directly supported by the context?\n"
"2. Does the answer address the question?\n"
"3. Are there any invented facts not in the context?\n\n"
"Also assign a validation score from 0 to 100, where 100 means every claim is fully grounded.\n\n"
f"Context:\n{context_text}\n\n"
f"Question: {state['question']}\n"
f"Answer: {state['answer']}\n\n"
"Respond in EXACTLY this format:\n"
"VERDICT: PASS\n"
"SCORE: <0-100>\n"
"REASON: <one sentence>\n\n"
"or\n\n"
"VERDICT: FAIL\n"
"SCORE: <0-100>\n"
"REASON: <one sentence explaining what is wrong>"
)
result = llm.invoke([HumanMessage(content=prompt)])
text = result.content.strip()
verdict = "PASS" if "VERDICT: PASS" in text.upper() else "FAIL"
reason = ""
score = 100 if verdict == "PASS" else 0
for line in text.splitlines():
if line.upper().startswith("REASON:"):
reason = line.split(":", 1)[1].strip()
elif line.upper().startswith("SCORE:"):
raw_score = line.split(":", 1)[1].strip()
score = _parse_validation_score(raw_score, score)
best_score = state.get("best_validation_score", -1)
best_updates = {}
if score > best_score:
best_updates = {
"best_answer": state["answer"],
"best_validation_score": score,
"best_fail_reason": reason,
}
return {
"validation_result": verdict,
"validation_score": score,
"fail_reason": reason,
**best_updates,
}
def increment_retry_node(state: RAGState) -> dict:
return {"retry_count": state.get("retry_count", 0) + 1}
def route_after_validation(state: RAGState) -> str:
if (
state["validation_result"] == "FAIL"
and state.get("retry_count", 0) < MAX_RETRIES
):
return "retry"
return "done"
def _build_graph():
g = StateGraph(RAGState)
g.add_node("generate", generate_node)
g.add_node("validate", validate_node)
g.add_node("increment_retry", increment_retry_node)
g.set_entry_point("generate")
g.add_edge("generate", "validate")
g.add_conditional_edges(
"validate",
route_after_validation,
{"retry": "increment_retry", "done": END},
)
g.add_edge("increment_retry", "generate")
return g.compile()
_rag_graph = _build_graph()
def run_rag_agent(
question: str,
context_chunks: list,
chat_history: list = [],
) -> tuple:
init_state: RAGState = {
"question": question,
"context_chunks": context_chunks,
"answer": "",
"validation_result": "",
"validation_score": 0,
"fail_reason": "",
"retry_count": 0,
"chat_history": chat_history,
"best_answer": "",
"best_validation_score": -1,
"best_fail_reason": "",
}
final = _rag_graph.invoke(init_state)
if final.get("validation_result") == "FAIL":
best_answer = final.get("best_answer") or final.get("answer") or SAFE_FALLBACK_ANSWER
best_score = final.get("best_validation_score", final.get("validation_score", 0))
best_reason = final.get("best_fail_reason") or final.get("fail_reason", "Validation failed")
answer = (
f"{LOW_CONFIDENCE_PREFIX} (validation score: {best_score}/100). "
f"Reason: {best_reason}\n\n{best_answer}"
)
return answer, final.get("retry_count", 0), "FAIL"
return final["answer"], final["retry_count"], final["validation_result"]
|