Spaces:
Sleeping
Sleeping
File size: 18,101 Bytes
1cc869f | 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 | """Forensic accounting engine (premium/owner tier).
Multi-layer automated investigation over the uploaded document set:
1. Structured extraction β company profile + multi-year key figures (LLM)
2. Red-flag rules β deterministic Schilit-style manipulation checks
(revenue, expenses, assets, liabilities, cash flow,
acquisitions, non-GAAP, policy changes)
3. Risk scoring β per-category scores + overall fraud-risk score
4. Fraud timeline β notable year-over-year signals
5. External validation β SEC EDGAR / Companies House lookups (best effort)
6. Explainability β LLM narrative: numbered reasons + overall assessment
Rules are deterministic and auditable; the LLM is used only for extraction and
for explaining findings, never for deciding them.
"""
from __future__ import annotations
import json
import re
from dataclasses import dataclass, field
from langchain_core.messages import HumanMessage, SystemMessage
from src.agents.qa_agent import format_evidence
from src.llm import get_llm
CATEGORIES = ("revenue", "expenses", "assets", "liabilities", "cash_flow", "governance")
METRICS = ["revenue", "receivables", "inventory", "net_income",
"operating_cash_flow", "goodwill", "cash", "total_debt",
"current_assets", "current_liabilities", "total_assets",
"shareholders_equity", "provisions"]
@dataclass
class Flag:
category: str
severity: str # low | medium | high
title: str
explanation: str
confidence: int # 0-100
def as_dict(self) -> dict:
return self.__dict__.copy()
@dataclass
class ForensicResult:
profile: dict
figures: dict # {year: {metric: float}}
kpis: dict # latest-year KPIs incl. ratios
flags: list[Flag]
category_scores: dict[str, int]
overall_risk: int
risk_label: str
timeline: list[tuple[str, list[str]]]
external: list[dict]
narrative: str
activity: list[str] = field(default_factory=list)
# ---------------------------------------------------------------------------
# Layer 1: structured extraction
# ---------------------------------------------------------------------------
EXTRACT_SYSTEM = """You are a forensic data extractor. From the evidence excerpts,
extract the company profile and key figures for EVERY fiscal year present.
Respond with ONLY a raw JSON object (no markdown fences, no prose) shaped as:
{
"company": str|null, "industry": str|null, "auditor": str|null,
"exchange": str|null, "country": str|null, "market_cap": str|null,
"currency": str|null,
"years": { "<fiscal year>": {
"revenue": number|null, "receivables": number|null, "inventory": number|null,
"net_income": number|null, "operating_cash_flow": number|null,
"goodwill": number|null, "cash": number|null, "total_debt": number|null,
"current_assets": number|null, "current_liabilities": number|null,
"total_assets": number|null, "shareholders_equity": number|null,
"provisions": number|null } },
"non_gaap_metrics": [str], "policy_changes": [str],
"capitalised_costs_mentioned": bool, "acquisitions_mentioned": bool
}
All figures as plain numbers in the SAME unit (e.g. millions) β no currency
symbols, no thousands separators. Use null when a figure is not in the evidence.
Never invent numbers."""
def _extract_json_object(text: str) -> dict:
text = re.sub(r"<think>.*?</think>", "", text, flags=re.DOTALL)
fence = re.search(r"```(?:json)?\s*(\{.*?\})\s*```", text, re.DOTALL)
candidates = [fence.group(1)] if fence else []
start = text.find("{")
if start != -1:
depth, in_str, esc = 0, False, False
for i in range(start, len(text)):
ch = text[i]
if in_str:
if esc:
esc = False
elif ch == "\\":
esc = True
elif ch == '"':
in_str = False
continue
if ch == '"':
in_str = True
elif ch == "{":
depth += 1
elif ch == "}":
depth -= 1
if depth == 0:
candidates.append(text[start:i + 1])
break
for cand in candidates:
try:
data = json.loads(cand)
if isinstance(data, dict):
return data
except json.JSONDecodeError:
continue
return {}
def _num(v) -> float | None:
if isinstance(v, (int, float)):
return float(v)
if isinstance(v, str):
cleaned = re.sub(r"[^\d.\-]", "", v)
try:
return float(cleaned) if cleaned not in ("", "-", ".") else None
except ValueError:
return None
return None
def extract_figures(evidence) -> dict:
llm = get_llm("analyst")
resp = llm.invoke([
SystemMessage(content=EXTRACT_SYSTEM),
HumanMessage(content=f"Evidence excerpts:\n\n{format_evidence(evidence)}"),
])
data = _extract_json_object(resp.content)
years = {}
for year, metrics in (data.get("years") or {}).items():
if isinstance(metrics, dict):
years[str(year)] = {m: _num(metrics.get(m)) for m in METRICS}
data["years"] = years
return data
# ---------------------------------------------------------------------------
# Layer 2: deterministic red-flag rules (Schilit-style)
# ---------------------------------------------------------------------------
def _g(prev: float | None, cur: float | None) -> float | None:
if prev in (None, 0) or cur is None:
return None
return (cur - prev) / abs(prev)
def run_rules(data: dict) -> list[Flag]:
flags: list[Flag] = []
years = sorted(data.get("years", {}).keys())
if len(years) >= 2:
prev, cur = data["years"][years[-2]], data["years"][years[-1]]
rev_g = _g(prev.get("revenue"), cur.get("revenue"))
rec_g = _g(prev.get("receivables"), cur.get("receivables"))
inv_g = _g(prev.get("inventory"), cur.get("inventory"))
ni_g = _g(prev.get("net_income"), cur.get("net_income"))
ocf_g = _g(prev.get("operating_cash_flow"), cur.get("operating_cash_flow"))
gw_g = _g(prev.get("goodwill"), cur.get("goodwill"))
prov_g = _g(prev.get("provisions"), cur.get("provisions"))
if rev_g is not None and rec_g is not None and rev_g > 0 and rec_g > rev_g * 1.5 and rec_g > 0.2:
flags.append(Flag("revenue", "high", "Receivables outpacing revenue",
f"Revenue grew {rev_g:.0%} while receivables grew {rec_g:.0%} β "
"possible aggressive recognition or channel stuffing.", 80))
if rev_g is not None and rev_g > 0.4:
flags.append(Flag("revenue", "medium", "Unusually rapid revenue growth",
f"Revenue grew {rev_g:.0%} year-over-year β verify sustainability "
"and recognition policy.", 65))
if ni_g is not None and ocf_g is not None and ni_g > 0 and ocf_g < 0:
flags.append(Flag("cash_flow", "high", "Earnings up, operating cash flow down",
f"Net income rose {ni_g:.0%} while operating cash flow fell "
f"{abs(ocf_g):.0%} β a classic earnings-quality warning.", 85))
ni, ocf = cur.get("net_income"), cur.get("operating_cash_flow")
if ni and ocf and ni > 0 and 0 < ocf < 0.6 * ni:
flags.append(Flag("cash_flow", "medium", "Weak cash conversion",
f"Operating cash flow ({ocf:,.0f}) is only {ocf / ni:.0%} of net "
f"income ({ni:,.0f}).", 75))
if inv_g is not None and rev_g is not None and inv_g > max(rev_g * 1.5, 0.2):
flags.append(Flag("assets", "medium", "Inventory building faster than sales",
f"Inventory grew {inv_g:.0%} vs revenue {rev_g:.0%} β possible "
"obsolescence or overproduction to absorb overheads.", 70))
if gw_g is not None and gw_g > 0.3:
flags.append(Flag("assets", "medium", "Goodwill spike",
f"Goodwill grew {gw_g:.0%} β review acquisition accounting and "
"purchase-price allocation (IFRS 3 / IAS 36).", 70))
if prov_g is not None and rev_g is not None and prov_g < -0.2 and rev_g > 0:
flags.append(Flag("liabilities", "medium", "Declining provisions while growing",
f"Provisions fell {abs(prov_g):.0%} while revenue rose β possible "
"liability understatement or cookie-jar release.", 65))
# latest-year point checks
if years:
cur = data["years"][years[-1]]
rev, rec = cur.get("revenue"), cur.get("receivables")
if rev and rec and rev > 0:
days = rec / rev * 365
if days > 75:
flags.append(Flag("revenue", "medium", "Slow receivable collection",
f"Receivable days β {days:.0f} (typical range 30β60) β "
"potential collection problem.", 70))
ca, cl = cur.get("current_assets"), cur.get("current_liabilities")
if ca and cl and cl > 0 and ca / cl < 1.0:
flags.append(Flag("liabilities", "medium", "Liquidity strain",
f"Current ratio {ca / cl:.2f} β current liabilities exceed "
"current assets.", 80))
if data.get("non_gaap_metrics"):
metrics = ", ".join(map(str, data["non_gaap_metrics"][:5]))
flags.append(Flag("governance", "medium", "Non-GAAP metrics in use",
f"Adjusted measures reported ({metrics}) β verify each adjustment "
"is justified and reconciled to statutory figures.", 60))
if data.get("policy_changes"):
changes = "; ".join(map(str, data["policy_changes"][:3]))
flags.append(Flag("governance", "high", "Accounting policy change",
f"Disclosed change(s): {changes} β assess earnings impact and "
"timing.", 75))
if data.get("capitalised_costs_mentioned"):
flags.append(Flag("expenses", "medium", "Cost capitalisation signals",
"Document mentions capitalised development or deferred costs β "
"check whether operating expenses are being parked on the "
"balance sheet.", 60))
if data.get("acquisitions_mentioned"):
flags.append(Flag("assets", "low", "Acquisition activity",
"Acquisitions mentioned β review purchase-price allocation, "
"goodwill and any bargain-purchase gains.", 55))
return flags
# ---------------------------------------------------------------------------
# Layer 3: risk scoring
# ---------------------------------------------------------------------------
_SEVERITY_POINTS = {"low": 10, "medium": 20, "high": 35}
def score(flags: list[Flag]) -> tuple[dict[str, int], int, str]:
scores = {c: 15 for c in CATEGORIES}
for f in flags:
scores[f.category] = min(100, scores[f.category] + _SEVERITY_POINTS[f.severity])
vals = list(scores.values())
overall = round(0.6 * max(vals) + 0.4 * (sum(vals) / len(vals)))
label = "Low Risk" if overall < 40 else "Moderate Risk" if overall < 70 else "High Risk"
return scores, overall, label
# ---------------------------------------------------------------------------
# Layer 4: fraud timeline
# ---------------------------------------------------------------------------
def build_timeline(data: dict) -> list[tuple[str, list[str]]]:
years = sorted(data.get("years", {}).keys())
timeline: list[tuple[str, list[str]]] = []
for i, year in enumerate(years):
cur = data["years"][year]
signals: list[str] = []
if i > 0:
prev = data["years"][years[i - 1]]
for metric, arrow_up, arrow_dn, bad_up in [
("receivables", "Receivables β", "Receivables β", True),
("goodwill", "Goodwill β", "Goodwill β", True),
("operating_cash_flow", "Operating cash flow β", "Operating cash flow β", False),
("cash", "Cash β", "Cash β", False),
]:
g = _g(prev.get(metric), cur.get(metric))
if g is None:
continue
if g > 0.25 and bad_up:
signals.append(f"{arrow_up} {g:.0%}")
elif g < -0.15 and not bad_up:
signals.append(f"{arrow_dn} {abs(g):.0%}")
timeline.append((year, signals or ["No notable signals"]))
return timeline
# ---------------------------------------------------------------------------
# Layer 5: external validation (best effort, never blocks)
# ---------------------------------------------------------------------------
def external_checks(company: str | None) -> list[dict]:
if not company:
return []
from src.tools import external
results = []
for fn in (external.sec_edgar_search, external.companies_house_search):
try:
results.append(fn(company))
except Exception as e:
results.append({"error": str(e)})
return results
# ---------------------------------------------------------------------------
# Layer 6: explainability narrative
# ---------------------------------------------------------------------------
NARRATIVE_SYSTEM = """You are a forensic accountant writing the explainability section
of an investigation report. Given deterministic red flags and figures (JSON),
write: numbered reasons ("Reason 1: ...", one per flag, quantified where the
data allows), then an "Overall Assessment" paragraph of 2-3 sentences in a
measured, audit-adjacent register. Findings are indicators for review, never
proof of fraud β say so."""
def explain(flags: list[Flag], data: dict) -> str:
if not flags:
return ("No red flags were triggered by the deterministic checks. This does not "
"prove the absence of manipulation β extend the document set (multiple "
"years, audit report, cash flow statement) for stronger coverage.")
llm = get_llm("verifier")
payload = {"flags": [f.as_dict() for f in flags], "figures": data.get("years", {})}
resp = llm.invoke([
SystemMessage(content=NARRATIVE_SYSTEM),
HumanMessage(content=json.dumps(payload, indent=2)),
])
return re.sub(r"<think>.*?</think>", "", resp.content, flags=re.DOTALL).strip()
# ---------------------------------------------------------------------------
# KPIs + pipeline entry point
# ---------------------------------------------------------------------------
def compute_kpis(data: dict) -> dict:
years = sorted(data.get("years", {}).keys())
if not years:
return {}
cur = data["years"][years[-1]]
kpis: dict = {"Fiscal year": years[-1]}
for label, key in [("Revenue", "revenue"), ("Net Income", "net_income"),
("Cash", "cash"), ("Debt", "total_debt")]:
v = cur.get(key)
kpis[label] = f"{v:,.0f}" if v is not None else "n/a"
def ratio(a, b):
va, vb = cur.get(a), cur.get(b)
return round(va / vb, 2) if va is not None and vb not in (None, 0) else None
kpis["Current Ratio"] = ratio("current_assets", "current_liabilities") or "n/a"
ca, inv, cl = cur.get("current_assets"), cur.get("inventory"), cur.get("current_liabilities")
kpis["Quick Ratio"] = (round((ca - inv) / cl, 2)
if None not in (ca, inv, cl) and cl != 0 else "n/a")
roe = ratio("net_income", "shareholders_equity")
roa = ratio("net_income", "total_assets")
kpis["ROE"] = f"{roe:.0%}" if isinstance(roe, float) else "n/a"
kpis["ROA"] = f"{roa:.0%}" if isinstance(roa, float) else "n/a"
return kpis
def run(retriever, doc_ids: list[str] | None = None) -> ForensicResult:
from src.graph.workflow import _balanced_retrieve
activity: list[str] = []
query = ("revenue receivables inventory net income operating cash flow "
"goodwill cash debt provisions equity assets auditor company")
evidence = _balanced_retrieve(retriever, query, doc_ids, per_doc=6)[:18]
activity.append(f"Evidence gathered β {len(evidence)} excerpts across "
f"{len({r.chunk.doc_id for r in evidence})} documents")
data = extract_figures(evidence)
n_years = len(data.get("years", {}))
activity.append(f"Financial statements extracted β {n_years} fiscal year(s)")
flags = run_rules(data)
activity.append(f"Manipulation checks run β {len(flags)} red flag(s)")
category_scores, overall, label = score(flags)
activity.append(f"Fraud-risk scoring completed β overall {overall}/100 ({label})")
timeline = build_timeline(data)
activity.append("Fraud timeline assembled")
external = external_checks(data.get("company"))
activity.append("External filings checked (SEC EDGAR / Companies House)"
if external else "External check skipped β company name not identified")
narrative = explain(flags, data)
activity.append("Investigation narrative generated")
return ForensicResult(
profile={k: data.get(k) for k in ("company", "industry", "auditor",
"exchange", "country", "market_cap", "currency")},
figures=data.get("years", {}),
kpis=compute_kpis(data),
flags=flags,
category_scores=category_scores,
overall_risk=overall,
risk_label=label,
timeline=timeline,
external=external,
narrative=narrative,
activity=activity,
)
|