Spaces:
Running
Running
File size: 17,444 Bytes
e3994d1 9b4986a e3994d1 1d293d8 e3994d1 9b4986a e3994d1 1d293d8 e3994d1 9b4986a e3994d1 1d293d8 e3994d1 9b4986a e3994d1 9b4986a e3994d1 9b4986a e3994d1 9b4986a e3994d1 9b4986a e3994d1 9b4986a e3994d1 9b4986a e3994d1 1d293d8 e3994d1 9b4986a e3994d1 | 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 | """
intelligence.py
===============
Advanced multi-paper intelligence features powered by
semantic similarity (multi-head self-attention embeddings) + Groq reasoning.
"""
import json
import logging
import numpy as np
import faiss
from typing import List, Dict, Tuple, Optional
from dataclasses import dataclass
from src.utils import ChildChunk, PaperResult
from src.models import get_embedder, get_groq_client, call_groq_with_fallback
log = logging.getLogger(__name__)
def _safe_parse_json(text: str):
"""Parse JSON from LLM output, stripping markdown fences if present."""
text = text.strip()
if "```json" in text:
text = text.split("```json")[1].split("```")[0].strip()
elif "```" in text:
text = text.split("```")[1].split("```")[0].strip()
return json.loads(text)
# βββ Data structures βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@dataclass
class Contradiction:
"""A detected contradiction between two paper claims."""
claim_a: str
claim_b: str
paper_a: str # paper title
paper_b: str
section_a: str
section_b: str
similarity: float # how semantically similar the claims are (0-1)
explanation: str # LLM-generated explanation of the contradiction
@dataclass
class ComparisonRow:
"""One row in a cross-paper comparison table."""
dimension: str # e.g. "Dataset", "Method", "Sample Size"
values: Dict[str, str] # paper_title -> value for that dimension
@dataclass
class PaperSummary:
"""Structured summary of a single paper."""
title: str
contribution: str
methodology: str
results: str
datasets: str
limitations: str
# βββ 1. CONTRADICTION DETECTION ββββββββββββββββββββββββββββββββββββββββββββββ
def _embed_chunks(chunks: List[ChildChunk]) -> np.ndarray:
"""
Embed chunks using the multi-head self-attention embedder.
Returns normalized 384-dim vectors for cosine similarity.
"""
embedder = get_embedder()
texts = [c.enriched_text for c in chunks]
if not texts:
return np.array([])
embeddings = embedder.encode(texts, batch_size=64, show_progress_bar=False, convert_to_numpy=True)
faiss.normalize_L2(embeddings)
return embeddings
def _find_cross_paper_similar_pairs(
chunks_a: List[ChildChunk],
chunks_b: List[ChildChunk],
threshold: float = 0.75,
top_k: int = 20
) -> List[Tuple[ChildChunk, ChildChunk, float]]:
"""
Find pairs of chunks from two different papers that discuss
the same topic (high cosine similarity between attention vectors).
"""
if not chunks_a or not chunks_b:
return []
emb_a = _embed_chunks(chunks_a)
emb_b = _embed_chunks(chunks_b)
dim = emb_b.shape[1]
index_b = faiss.IndexFlatIP(dim)
index_b.add(emb_b)
k_search = min(3, len(chunks_b))
scores, indices = index_b.search(emb_a, k_search)
pairs = []
seen = set()
for i in range(len(chunks_a)):
for j_rank in range(k_search):
j = indices[i][j_rank]
if j < 0:
continue
sim = float(scores[i][j_rank])
if sim >= threshold and (i, j) not in seen:
seen.add((i, j))
pairs.append((chunks_a[i], chunks_b[j], sim))
pairs.sort(key=lambda x: x[2], reverse=True)
return pairs[:top_k]
def _classify_contradiction(claim_a: str, paper_a: str, claim_b: str, paper_b: str) -> Dict:
"""
Use Groq (Llama-3) to determine if two similar claims actually contradict.
"""
client = get_groq_client()
system_prompt = """You are an expert scientific reviewer analyzing claims from academic papers.
Given two claims from different papers, determine their relationship.
Respond in EXACTLY this JSON format (no markdown, no code fences):
{"verdict": "contradiction" or "agreement" or "unrelated", "explanation": "brief 1-2 sentence explanation"}
Guidelines:
- "contradiction": The claims make opposing or incompatible statements about the same topic.
- "agreement": The claims support or reinforce each other.
- "unrelated": The claims discuss different aspects."""
user_prompt = f"""CLAIM FROM "{paper_a}":\n{claim_a}\n\nCLAIM FROM "{paper_b}":\n{claim_b}"""
try:
response = call_groq_with_fallback(
client,
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": user_prompt}
],
model="llama-3.1-8b-instant",
temperature=0.0,
max_tokens=200
)
return _safe_parse_json(response.choices[0].message.content)
except Exception as e:
log.warning(f"Contradiction classification failed: {e}")
return {"verdict": "unrelated", "explanation": "Failed to parse LLM response."}
def detect_contradictions(
paper_results: List[PaperResult],
similarity_threshold: float = 0.75,
max_pairs_per_comparison: int = 10
) -> List[Contradiction]:
"""Detect contradictions across all pairs of papers."""
contradictions = []
for i in range(len(paper_results)):
for j in range(i + 1, len(paper_results)):
paper_a = paper_results[i]
paper_b = paper_results[j]
similar_pairs = _find_cross_paper_similar_pairs(
paper_a.children, paper_b.children,
threshold=similarity_threshold, top_k=max_pairs_per_comparison
)
for chunk_a, chunk_b, sim in similar_pairs:
result = _classify_contradiction(
chunk_a.text, paper_a.metadata.title,
chunk_b.text, paper_b.metadata.title
)
if result.get("verdict") == "contradiction":
contradictions.append(Contradiction(
claim_a=chunk_a.text,
claim_b=chunk_b.text,
paper_a=paper_a.metadata.title,
paper_b=paper_b.metadata.title,
section_a=chunk_a.metadata.get("section", "Unknown"),
section_b=chunk_b.metadata.get("section", "Unknown"),
similarity=sim,
explanation=result.get("explanation", "")
))
return contradictions
# βββ 2. CROSS-PAPER COMPARISON βββββββββββββββββββββββββββββββββββββββββββββββ
def generate_comparison_table(paper_results: List[PaperResult]) -> List[ComparisonRow]:
"""Generate a structured comparison across all loaded papers."""
if not paper_results:
return []
client = get_groq_client()
papers_block = ""
for pr in paper_results:
title = pr.metadata.title
text_sample = "\n".join([c.text for c in pr.children[:15]])[:3000]
papers_block += f"\n--- PAPER: {title} ---\n{text_sample}\n"
system_prompt = """You are a research analyst creating a structured comparison table across academic papers.
Extract information for EACH paper along these dimensions. Respond in EXACTLY this JSON format (no markdown, no code fences):
[
{"dimension": "Research Objective", "values": {"Paper Title 1": "...", "Paper Title 2": "..."}},
{"dimension": "Dataset", "values": {"Paper Title 1": "...", "Paper Title 2": "..."}},
{"dimension": "Methodology", "values": {"Paper Title 1": "...", "Paper Title 2": "..."}},
{"dimension": "Key Results", "values": {"Paper Title 1": "...", "Paper Title 2": "..."}},
{"dimension": "Limitations", "values": {"Paper Title 1": "...", "Paper Title 2": "..."}}
]"""
try:
response = call_groq_with_fallback(
client,
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": f"Compare these papers:\n{papers_block}"}
],
model="llama-3.1-8b-instant",
temperature=0.1,
max_tokens=1500
)
rows_data = _safe_parse_json(response.choices[0].message.content)
return [ComparisonRow(dimension=r["dimension"], values=r["values"]) for r in rows_data]
except Exception as e:
log.warning(f"Comparison table generation failed: {e}")
return []
# βββ 3. LITERATURE REVIEW GENERATION βββββββββββββββββββββββββββββββββββββββββ
def generate_literature_review(
paper_results: List[PaperResult],
focus_topic: Optional[str] = None
) -> str:
"""Generate a coherent, multi-cited literature review paragraph."""
if not paper_results:
return "No papers provided for literature review."
client = get_groq_client()
papers_block = ""
for pr in paper_results:
title = pr.metadata.title
authors = pr.metadata.authors
year = pr.metadata.year
key_text = "\n".join([c.text for c in pr.children[:12]])[:2500]
papers_block += f"\n--- [{title}] by {authors} ({year}) ---\n{key_text}\n"
focus_instruction = f"\nFocus specifically on: {focus_topic}" if focus_topic else ""
system_prompt = f"""You are an academic researcher writing a literature review section for a paper.
INSTRUCTIONS:
1. Write a cohesive, well-structured literature review paragraph (200-350 words).
2. Synthesize findings across ALL provided papers β do not summarize them one by one.
3. Every factual claim MUST cite the source paper using the format (Author, Year).
4. Highlight agreements, differences, and gaps in the literature.{focus_instruction}"""
try:
response = call_groq_with_fallback(
client,
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": f"Write a literature review based on these papers:\n{papers_block}"}
],
model="llama-3.1-8b-instant",
temperature=0.3,
max_tokens=800
)
return response.choices[0].message.content
except Exception as e:
log.warning(f"Literature review generation failed: {e}")
return "Failed to generate literature review."
# βββ 4. PAPER SUMMARIZATION ββββββββββββββββββββββββββββββββββββββββββββββββββ
def summarize_paper(paper_result: PaperResult) -> PaperSummary:
"""Generate a detailed, structured summary of a single paper using Groq."""
# Keep within free tier Groq limits (6000 TPM limit). max_tokens=1500 + context ~3500 tokens = ~5000 total.
full_text = "\n".join([c.text for c in paper_result.children[:30]])[:14000]
client = get_groq_client()
system_prompt = """You are an expert at summarizing academic papers.
Given the text of a paper, generate a highly detailed and comprehensive structured summary.
Do not be brief. Provide enough technical depth that another researcher can fully understand the paper without reading it.
Respond in EXACTLY this JSON format (no markdown, no code fences):
{
"contribution": "1-2 detailed paragraphs explaining the core problem and the main contribution.",
"methodology": "1-2 detailed paragraphs explaining the specific approach, algorithms, or experiments.",
"results": "1-2 detailed paragraphs explaining the exact findings, metrics, and outcomes.",
"datasets": "Detailed list of datasets used (or 'Not specified')",
"limitations": "Detailed explanation of limitations and future work (or 'Not explicitly stated')"
}"""
try:
response = call_groq_with_fallback(
client,
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": f"Paper title: {paper_result.metadata.title}\n\nPaper Content:\n{full_text}"}
],
model="llama-3.1-8b-instant",
temperature=0.2,
max_tokens=1500,
response_format={"type": "json_object"}
)
content = response.choices[0].message.content
# Robust JSON parsing (strip markdown fences if the model hallucinates them)
if "```json" in content:
content = content.split("```json")[1].split("```")[0].strip()
elif "```" in content:
content = content.split("```")[1].strip()
data = json.loads(content)
datasets_val = data.get("datasets", "Not specified")
if isinstance(datasets_val, list):
datasets_val = ", ".join(str(v) for v in datasets_val)
elif isinstance(datasets_val, dict):
datasets_val = ", ".join(f"{k}: {v}" for k, v in datasets_val.items())
else:
datasets_val = str(datasets_val)
return PaperSummary(
title=paper_result.metadata.title,
contribution=data.get("contribution", "Not available"),
methodology=data.get("methodology", "Not available"),
results=data.get("results", "Not available"),
datasets=datasets_val,
limitations=data.get("limitations", "Not explicitly stated")
)
except Exception as e:
log.warning(f"Summarization failed: {e}")
return PaperSummary(
title=paper_result.metadata.title,
contribution="Failed to generate structured summary.",
methodology="N/A", results="N/A", datasets="N/A", limitations="N/A"
)
# βββ 5. KEY FINDINGS EXTRACTION ββββββββββββββββββββββββββββββββββββββββββββββ
def extract_key_findings(paper_results: List[PaperResult]) -> Dict[str, List[str]]:
"""Extract the top 3-5 key findings from each paper."""
client = get_groq_client()
findings = {}
for pr in paper_results:
title = pr.metadata.title
relevant_chunks = [
c for c in pr.children
if any(kw in c.metadata.get("section", "").lower()
for kw in ["result", "conclusion", "discussion", "finding"])
]
if not relevant_chunks:
relevant_chunks = pr.children[:10]
text = "\n".join([c.text for c in relevant_chunks[:10]])[:2500]
try:
response = call_groq_with_fallback(
client,
messages=[
{"role": "system", "content": "Extract top 3-5 key findings. Return as JSON list of strings. No markdown formatting."},
{"role": "user", "content": f"Paper: {title}\n\n{text}"}
],
model="llama-3.1-8b-instant",
temperature=0.1,
max_tokens=400
)
findings[title] = _safe_parse_json(response.choices[0].message.content)
except Exception:
findings[title] = ["Could not extract findings."]
return findings
# βββ 6. AUTO-HYPOTHESIS GENERATION βββββββββββββββββββββββββββββββββββββββββββ
def generate_hypotheses(paper_results: List[PaperResult]) -> str:
"""Generate 3 novel research hypotheses based on the gaps/limitations of the papers."""
if not paper_results:
return "Please upload papers first."
client = get_groq_client()
# Extract limitations or discussion sections
context = ""
for pr in paper_results:
title = pr.metadata.title
limitations = [
c.text for c in pr.children
if any(kw in c.metadata.get("section", "").lower() for kw in ["limit", "future", "discussion", "conclusion"])
][:5]
if not limitations:
limitations = [c.text for c in pr.children[-5:]] # fallback to end of paper
context += f"\n--- Paper: {title} ---\n"
context += "\n".join(limitations) + "\n"
system_prompt = """You are a brilliant AI Research Scientist.
Analyze the limitations, future work, and conclusions of the provided papers.
Synthesize this information to propose 3 NOVEL, highly specific research hypotheses or experiments that have NOT been done yet, but logically follow from the gaps in these papers.
Format your response as a numbered list with bold titles. For each hypothesis, explain:
1. The Core Idea
2. Why it is novel (based on the provided papers)
3. A brief experimental design to test it."""
try:
response = call_groq_with_fallback(
client,
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": f"Based on the following excerpts, propose 3 novel research hypotheses:\n\n{context[:15000]}"}
],
model="llama-3.1-8b-instant",
temperature=0.4,
max_tokens=1000
)
return response.choices[0].message.content
except Exception as e:
log.warning(f"Hypothesis generation failed: {e}")
return "Failed to generate hypotheses."
|