Spaces:
Running
Running
File size: 8,688 Bytes
2671aea 9b7c6ff 2671aea 5951bbe 2671aea 9b7c6ff 2671aea 9b7c6ff 2671aea 9b7c6ff 2671aea 9b7c6ff 2671aea 5951bbe 294d426 5951bbe 294d426 5951bbe 294d426 5951bbe 294d426 5951bbe 294d426 5951bbe 294d426 5951bbe 2671aea 5951bbe 2671aea 5951bbe 2671aea 5951bbe 2671aea 5951bbe 2671aea 5951bbe 2671aea 9b7c6ff 2671aea 9b7c6ff 5951bbe 9b7c6ff 2671aea 9b7c6ff 5951bbe 9b7c6ff 5951bbe 9b7c6ff 294d426 9b7c6ff 5951bbe 9b7c6ff 5951bbe 9b7c6ff 5951bbe 9b7c6ff 5951bbe 9b7c6ff | 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 | """
The complete RAG pipeline - orchestrates retrieval + generation.
This is the core of ResearchPilot. Every user query goes through this.
PIPELINE FLOW:
1. Validate and clean the query
2. Retrieve top-5 relevant chunks (Phase 8 pipeline)
3. Build prompt with context
4. Generate answer via Groq LLM
5. Parse and structure the response
6. Return answer + citations + metadata
"""
import time
import json
from dataclasses import dataclass, field
from typing import Optional, List
@dataclass
class ConversationTurn:
role: str
content: str
citations: list = field(default_factory=list)
from src.retrieval.retrieval_pipeline import RetrievalPipeline
from src.rag.llm_client import MultiModelClient
from src.rag.prompt_templates import (
SYSTEM_PROMPT,
build_rag_prompt,
build_citation_list,
)
from src.utils.logger import get_logger
from config.settings import TOP_K_RERANK
logger = get_logger(__name__)
@dataclass
class RAGResponse:
answer: str
citations: list[dict]
retrieved_chunks: list[dict]
query: str
retrieval_time_ms: float
generation_time_ms: float
total_time_ms: float
has_context: bool
model_used: str = ""
def to_dict(self) -> dict:
return {
"answer": self.answer,
"citations": self.citations,
"query": self.query,
"retrieval_time_ms": round(self.retrieval_time_ms, 1),
"generation_time_ms": round(self.generation_time_ms, 1),
"total_time_ms": round(self.total_time_ms, 1),
"has_context": self.has_context,
"chunks_used": len(self.retrieved_chunks),
"model_used": self.model_used,
}
class RAGPipeline:
def __init__(self):
logger.info("Initializing RAGPipeline...")
self.retriever = RetrievalPipeline()
self.llm = MultiModelClient()
logger.info("RAGPipeline ready")
def _build_retrieval_query(
self,
question: str,
history: list[ConversationTurn]
) -> str:
followup_signals = [
# pronouns referring to prior context
"it", "that", "this", "they", "them", "those", "these",
# conversational follow-ups
"more", "example", "explain", "clarify", "elaborate",
"simpler", "simple", "detail", "again", "further",
# comprehension requests
"easy", "understand", "meaning", "mean", "summarize",
"summary", "break down", "eli5", "what about",
]
question_lower = question.lower()
question_words = set(question_lower.split())
# Use word-boundary matching for single words, substring for phrases
is_followup = (
len(question.split()) < 25 and
any(
signal in question_words if " " not in signal
else signal in question_lower
for signal in followup_signals
)
)
if is_followup and history:
last_substantial = ""
for turn in reversed(history):
if turn.role == "user" and len(turn.content.split()) > 3:
last_substantial = turn.content
break
if last_substantial:
combined = f"{last_substantial} {question}"
logger.info(f"Follow-up detected. Retrieval query: '{combined[:80]}...'")
return combined
logger.info(f"Standalone query. Retrieval query: '{question[:80]}'")
return question
def query(
self,
question: str,
history: list[ConversationTurn] = None,
top_k: int = TOP_K_RERANK,
filter_category: Optional[str] = None,
filter_year_gte: Optional[int] = None,
) -> RAGResponse:
question = question.strip()
history = history or []
if not question:
raise ValueError("Question cannot be empty")
total_start = time.time()
retrieval_start = time.time()
retrieval_query = self._build_retrieval_query(question, history)
chunks = self.retriever.retrieve(
query = retrieval_query,
top_k_final = top_k,
filter_category = filter_category,
filter_year_gte = filter_year_gte,
)
retrieval_ms = (time.time() - retrieval_start) * 1000
has_context = len(chunks) > 0
if has_context:
user_prompt = build_rag_prompt(question, chunks)
else:
user_prompt = (
f"The user asked: {question}\n\n"
f"No relevant research papers were found in the database. "
f"Politely inform the user and suggest they try rephrasing "
f"or broadening their query."
)
history_messages = []
if history:
for turn in history[-10:]:
history_messages.append({
"role": turn.role,
"content": turn.content
})
generation_start = time.time()
answer, model_used = self.llm.generate(
system_prompt = SYSTEM_PROMPT,
user_prompt = user_prompt,
original_query = question,
history = history_messages,
stream=False
)
generation_ms = (time.time() - generation_start) * 1000
total_ms = (time.time() - total_start) * 1000
citations = build_citation_list(chunks)
return RAGResponse(
answer = answer,
citations = citations,
retrieved_chunks = chunks,
query = question,
retrieval_time_ms = retrieval_ms,
generation_time_ms = generation_ms,
total_time_ms = total_ms,
has_context = has_context,
model_used = model_used
)
def stream_query(
self,
question: str,
history: list[ConversationTurn] = None,
top_k: int = TOP_K_RERANK,
filter_category: Optional[str] = None,
filter_year_gte: Optional[int] = None,
):
question = question.strip()
history = history or []
if not question:
raise ValueError("Question cannot be empty")
logger.info(f"stream_query: question='{question[:60]}', history_turns={len(history)}")
total_start = time.time()
retrieval_start = time.time()
retrieval_query = self._build_retrieval_query(question, history)
chunks = self.retriever.retrieve(
query = retrieval_query,
top_k_final = top_k,
filter_category = filter_category,
filter_year_gte = filter_year_gte,
)
retrieval_ms = (time.time() - retrieval_start) * 1000
has_context = len(chunks) > 0
if has_context:
user_prompt = build_rag_prompt(question, chunks)
else:
user_prompt = (
f"The user asked: {question}\n\n"
f"No relevant research papers were found in the database. "
f"Politely inform the user and suggest they try rephrasing "
f"or broadening their query."
)
history_messages = []
if history:
for turn in history[-10:]:
history_messages.append({
"role": turn.role,
"content": turn.content
})
generation_start = time.time()
generator, model_used = self.llm.generate(
system_prompt = SYSTEM_PROMPT,
user_prompt = user_prompt,
original_query = question,
history = history_messages,
stream=True
)
for token in generator:
yield f"data: {json.dumps({'token': token})}\n\n"
generation_ms = (time.time() - generation_start) * 1000
total_ms = (time.time() - total_start) * 1000
citations = build_citation_list(chunks)
metadata = {
"done": True,
"citations": citations,
"model_used": model_used,
"timing": {
"retrieval_time_ms": round(retrieval_ms, 1),
"generation_time_ms": round(generation_ms, 1),
"total_time_ms": round(total_ms, 1),
"chunks_used": len(chunks)
}
}
yield f"data: {json.dumps(metadata)}\n\n" |