Spaces:
Running
Running
File size: 26,988 Bytes
6d1c685 | 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 | # app.py
# Slop Detector
# Gradio app
# 24-02-2026
#
# EVERNOTE:
# https://share.evernote.com/note/0fb9b438-7842-4eff-a93f-ba0850e6ae83
#
# F:\DATA SCIENCE\MIJN DATA SCIENCE PROJECTS\FAKE NEWS DETECTOR - LOCAL LLM - SIRAJ RAVAL FEB 2026\SlopShield-main\SlopShield-PYTHON\GRADIO_APP
# app.py
# Gradio app for automated slop detection (Hugging Face Spaces ready).
#
# β
Features:
# - User can input a URL OR paste text
# - Extracts main content (trafilatura preferred, BeautifulSoup fallback)
# - Calls an OpenAI "mini" model (default: gpt-4o-mini) using Structured Outputs (JSON Schema)
# - Displays results neatly (score, subscores, contributions, interpretation, radar chart)
# - Allows downloading a Markdown (.md) report and a PDF (.pdf) report
#
# --- HF Spaces setup notes ---
# 1) Add an environment variable in your Space:
# OPENAI_API_KEY = "..."
# 2) Recommended requirements.txt:
# gradio
# openai
# requests
# trafilatura
# beautifulsoup4
# lxml
# matplotlib
# reportlab
#
# OpenAI docs referenced for Structured Outputs + model listing:
# - Structured Outputs: https://developers.openai.com/api/docs/guides/structured-outputs/ [oai_citation:0β‘OpenAI Developers](https://developers.openai.com/api/docs/guides/structured-outputs/?utm_source=chatgpt.com)
# - Models (incl. gpt-4o-mini): https://developers.openai.com/api/docs/models [oai_citation:1β‘OpenAI Developers](https://developers.openai.com/api/docs/models?utm_source=chatgpt.com)
# - gpt-4o-mini model page: https://developers.openai.com/api/docs/models/gpt-4o-mini [oai_citation:2β‘OpenAI Developers](https://developers.openai.com/api/docs/models/gpt-4o-mini?utm_source=chatgpt.com)
# - Responses API: https://platform.openai.com/docs/api-reference/responses [oai_citation:3β‘platform.openai.com](https://platform.openai.com/docs/api-reference/responses?utm_source=chatgpt.com)
# pip install -r requirements.txt --user
import os
import re
import json
import math
import time
import textwrap
import urllib.parse
from dataclasses import dataclass
from typing import Optional, Dict, Any, Tuple, List
import requests
import gradio as gr
# Optional extraction libs
try:
import trafilatura
except Exception:
trafilatura = None
try:
from bs4 import BeautifulSoup
except Exception:
BeautifulSoup = None
import matplotlib.pyplot as plt
from reportlab.lib.pagesizes import letter
from reportlab.lib.styles import getSampleStyleSheet
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer, Preformatted
from reportlab.lib.units import inch
from openai import OpenAI
# -----------------------------
# Config
# -----------------------------
DEFAULT_MODEL = os.getenv("OPENAI_MODEL", "gpt-4o-mini")
MAX_CHARS_SENT_TO_LLM = int(os.getenv("MAX_CHARS_SENT_TO_LLM", "35000")) # safety for context
HTTP_TIMEOUT = int(os.getenv("HTTP_TIMEOUT", "20"))
# Output dir for reports and radar chart (works on Windows and Linux)
_OUTPUT_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "slop_output")
os.makedirs(_OUTPUT_DIR, exist_ok=True)
# Preset URLs the user can choose from (DEV_LOG examples)
DEFAULT_URL_CHOICES = [
("Custom β enter your own URL below", ""),
("CNN Home", "https://www.cnn.com/"),
("CNN Politics", "https://www.cnn.com/politics"),
("CNN β US-Iran strike article", "https://edition.cnn.com/2026/02/19/politics/us-iran-strike-options-trump-military"),
("CNN β China AI Seedance", "https://www.cnn.com/2026/02/20/china/china-ai-seedance-intl-hnk-dst"),
("MattsWorld101 β SEO examples", "https://mattsworld101.com/examples-of-seo/"),
("Scitechtalk β Genealogy", "http://www.scitechtalk.org/UITGEBREIDE_GENEALOGIE_VAN%20_SERVAAS_BOURS/HTu1-10.html"),
("Scitechtalk β arXiv aggregator", "http://scitechtalk.org/ARXIV_AGGREGATOR/index.html"),
("arXiv β paper abs/2410.14255", "https://arxiv.org/abs/2410.14255"),
("Dumpert", "https://www.dumpert.nl/"),
("Medium β P vs NP of AI", "https://medium.com/data-and-beyond/the-p-vs-np-of-ai-why-reasoning-is-mathematically-impossible-for-a-decoder-ee440f1d27ce"),
("Medium β Creativity vector hallucination", "https://medium.com/data-and-beyond/i-extracted-a-creativity-vector-from-gpt-it-was-a-hallucination-95a033fb890a"),
("Medium β Topology of matrix multiplication", "https://medium.com/data-and-beyond/the-topology-of-matrix-multiplication-why-your-ai-is-just-folding-space-cf8e408f2c91"),
]
UA = (
"Mozilla/5.0 (X11; Linux x86_64) "
"AppleWebKit/537.36 (KHTML, like Gecko) "
"Chrome/120.0 Safari/537.36 SlopDetector/1.0"
)
# -----------------------------
# Helpers
# -----------------------------
def clamp01(x: float) -> float:
return max(0.0, min(1.0, float(x)))
def safe_slug(s: str, max_len: int = 60) -> str:
s = (s or "").strip().lower()
s = re.sub(r"https?://", "", s)
s = re.sub(r"[^a-z0-9]+", "-", s).strip("-")
if not s:
s = "slop-report"
return s[:max_len].rstrip("-")
def now_ts() -> str:
return time.strftime("%Y%m%d-%H%M%S")
def infer_title_from_text(text: str) -> str:
# simple heuristic: first non-empty line (trim)
for line in (text or "").splitlines():
line = line.strip()
if len(line) >= 8:
return line[:120]
return "Untitled"
def compute_interpretation(slop_score_0_100: float) -> str:
# Interprets the 0β100 score; user can normalize by /100 if desired.
s = slop_score_0_100
if s <= 5:
band = "Extremely Low Slop"
desc = "Meaning-dense, highly specific, minimal repetition/templating."
elif s <= 15:
band = "Very Low Slop"
desc = "High information density; only mild stylistic templates."
elif s <= 30:
band = "Low Slop"
desc = "Mostly meaning-driven, with some rhetorical repetition or structure."
elif s <= 45:
band = "MildβModerate Slop"
desc = "Noticeable templating and/or generic framing; still contains substance."
elif s <= 60:
band = "Moderate Slop"
desc = "Substantial filler/templating; reduced specificity; repetition noticeable."
elif s <= 75:
band = "High Slop"
desc = "Strong low-value signals: repetition, template voice, low specificity."
elif s <= 90:
band = "Very High Slop"
desc = "Predominantly template/filler; weak grounding; attention/SEO patterns likely."
else:
band = "Extreme Slop"
desc = "Near-pure filler or spam-like content; minimal meaningful information."
return f"**{band}** β {desc}"
def weighted_contributions(result: Dict[str, Any]) -> Dict[str, float]:
# Uses the canonical weights from your spec.
info_density = clamp01(result.get("info_density", 0.0))
redundancy = clamp01(result.get("redundancy", 0.0))
template = clamp01(result.get("template_markers", 0.0))
incoherence = clamp01(result.get("incoherence", 0.0))
monetization = clamp01(result.get("monetization", 0.0))
contrib = {
"info_density_deficit": 0.30 * (1.0 - info_density),
"redundancy": 0.30 * redundancy,
"template_markers": 0.20 * template,
"incoherence": 0.10 * incoherence,
"monetization": 0.10 * monetization,
}
# normalized sum should equal slop (0..1) if model followed formula
contrib["slop_normalized_sum"] = sum(contrib.values())
contrib["slop_score_0_100_sum"] = 100.0 * contrib["slop_normalized_sum"]
return contrib
def make_radar_chart(subscores: Dict[str, float], out_path: str) -> str:
labels = ["info_density", "redundancy", "template_markers", "incoherence", "monetization"]
values = [clamp01(subscores.get(k, 0.0)) for k in labels]
# Radar chart setup
angles = [n / float(len(labels)) * 2 * math.pi for n in range(len(labels))]
angles += angles[:1]
vals = values + values[:1]
plt.figure(figsize=(6, 6))
ax = plt.subplot(111, polar=True)
ax.set_theta_offset(math.pi / 2)
ax.set_theta_direction(-1)
plt.xticks(angles[:-1], labels)
ax.set_rlabel_position(0)
plt.yticks([0.25, 0.5, 0.75], ["0.25", "0.50", "0.75"], alpha=0.7)
plt.ylim(0, 1)
# Do not set explicit colors (per system guidance)
ax.plot(angles, vals, linewidth=2)
ax.fill(angles, vals, alpha=0.15)
plt.title("Subscores Radar (0β1)", y=1.08)
plt.tight_layout()
plt.savefig(out_path, dpi=160)
plt.close()
return out_path
# -----------------------------
# Webpage extraction
# -----------------------------
def normalize_url(url: str) -> str:
"""Ensure URL has a scheme (default https://)."""
url = (url or "").strip()
if not url:
return url
if not url.startswith(("http://", "https://")):
url = "https://" + url
return url
def fetch_url(url: str) -> Tuple[str, str]:
"""Return (final_url, html)."""
url = normalize_url(url)
headers = {"User-Agent": UA}
resp = requests.get(url, headers=headers, timeout=HTTP_TIMEOUT, allow_redirects=True)
resp.raise_for_status()
final_url = resp.url
html = resp.text
return final_url, html
def extract_main_text(url: str) -> Tuple[str, str, str]:
"""
Returns (final_url, extracted_text, extraction_method).
"""
url = normalize_url(url)
final_url, html = fetch_url(url)
if trafilatura is not None:
try:
downloaded = trafilatura.extract(
html,
include_comments=False,
include_tables=False,
include_formatting=False,
url=final_url,
)
if downloaded and len(downloaded.strip()) > 200:
return final_url, downloaded.strip(), "trafilatura"
except Exception:
pass
# Fallback: BeautifulSoup get_text
if BeautifulSoup is not None:
soup = BeautifulSoup(html, "lxml") if "lxml" in globals() else BeautifulSoup(html, "html.parser")
# Remove scripts/styles
for tag in soup(["script", "style", "noscript"]):
tag.decompose()
text = soup.get_text("\n")
# Normalize whitespace
lines = [ln.strip() for ln in text.splitlines()]
lines = [ln for ln in lines if ln]
cleaned = "\n".join(lines)
cleaned = re.sub(r"\n{3,}", "\n\n", cleaned).strip()
return final_url, cleaned, "beautifulsoup_fallback"
# Last resort: raw html stripped
stripped = re.sub(r"<[^>]+>", " ", html)
stripped = re.sub(r"\s+", " ", stripped).strip()
return final_url, stripped, "regex_fallback"
# -----------------------------
# OpenAI call (Structured Outputs JSON Schema)
# -----------------------------
SLOP_SCHEMA = {
"name": "slop_score_output",
"schema": {
"type": "object",
"additionalProperties": False,
"properties": {
"info_density": {"type": "number"},
"redundancy": {"type": "number"},
"template_markers": {"type": "number"},
"incoherence": {"type": "number"},
"monetization": {"type": "number"},
"slop_score": {"type": "number"},
"top_contributing_factors": {
"type": "array",
"items": {"type": "string"},
"minItems": 1,
},
"confidence": {"type": "number"},
},
"required": [
"info_density",
"redundancy",
"template_markers",
"incoherence",
"monetization",
"slop_score",
"top_contributing_factors",
"confidence",
],
},
"strict": True,
}
def build_prompt(url: str, text: str) -> str:
# Your prompt, adapted to accept either URL or pasted text.
# We do NOT ask the model to add interpretation outside JSON; the app does that deterministically.
return f"""
You are given extracted main text from a webpage.
WEBPAGE:
{url if url else ""}
TEXT:
Read the text from webpage:
{url if url else "(user-provided text)"}
MAIN_TEXT:
\"\"\"
{text}
\"\"\"
Goal:
Estimate Sloppiness (0β100).
Definition:
Sloppiness = degree to which text is low-information, generic, repetitive, templated, incoherent, or monetization-optimized rather than meaning-dense.
Constraints:
- Evaluate only intrinsic writing properties.
- Ignore topic, politics, and site type.
- Do not speculate beyond text evidence.
Step 1 β Produce normalized subscores (0β1):
- info_density: 1 = high specificity, 0 = generic.
- redundancy: 1 = heavy repetition.
- template_markers: 1 = strongly templated.
- incoherence: 1 = incoherent.
- monetization: 1 = heavy monetization cues.
Step 2 β Compute score:
slop_score = 100 * (
0.30 * (1 - info_density) +
0.30 * redundancy +
0.20 * template_markers +
0.10 * incoherence +
0.10 * monetization
)
Step 3 β Output ONLY valid JSON matching the provided schema.
""".strip()
def call_openai_slop(api_key: str, model: str, url: str, text: str, temperature: float) -> Dict[str, Any]:
api_key = (api_key or "").strip()
if not api_key:
raise RuntimeError("Please enter your OpenAI API key above before running analysis.")
client = OpenAI(api_key=api_key)
# Trim text for safety
trimmed = text[:MAX_CHARS_SENT_TO_LLM]
prompt = build_prompt(url=url, text=trimmed)
# Chat Completions API with Structured Outputs (JSON Schema)
resp = client.chat.completions.create(
model=model,
messages=[
{"role": "system", "content": "You are a careful evaluator. Follow the schema exactly."},
{"role": "user", "content": prompt},
],
temperature=temperature,
response_format={"type": "json_schema", "json_schema": SLOP_SCHEMA},
)
raw = (resp.choices[0].message.content or "").strip()
if not raw:
raise RuntimeError("Model returned empty content.")
try:
data = json.loads(raw)
except Exception as e:
raise RuntimeError(f"Model returned non-JSON or malformed JSON. Raw output:\n{raw}") from e
# Clamp and sanity-check
for k in ["info_density", "redundancy", "template_markers", "incoherence", "monetization", "confidence"]:
data[k] = clamp01(data.get(k, 0.0))
# slop_score should be 0..100
data["slop_score"] = float(data.get("slop_score", 0.0))
data["slop_score"] = max(0.0, min(100.0, data["slop_score"]))
# Ensure list exists
if not isinstance(data.get("top_contributing_factors"), list):
data["top_contributing_factors"] = []
return data
# -----------------------------
# Report generation (MD + PDF)
# -----------------------------
def format_report_markdown(
url: str,
title: str,
extraction_method: str,
text_preview: str,
result: Dict[str, Any],
) -> str:
contrib = weighted_contributions(result)
slop = result["slop_score"]
interp = compute_interpretation(slop)
normalized = slop / 100.0
md = []
md.append(f"# Slop Detection Report")
md.append("")
md.append(f"- **Title (heuristic):** {title}")
md.append(f"- **URL:** {url if url else '(user-provided text)'}")
md.append(f"- **Extraction method:** {extraction_method}")
md.append(f"- **Generated at:** {time.strftime('%Y-%m-%d %H:%M:%S')}")
md.append("")
md.append("## Overall Score")
md.append("")
md.append(f"- **slop_score (0β100):** {slop:.1f}")
md.append(f"- **slop (0β1):** {normalized:.3f}")
md.append(f"- **confidence (0β1):** {result.get('confidence', 0.0):.2f}")
md.append("")
md.append("### Interpretation")
md.append("")
md.append(interp)
md.append("")
md.append("## Subscores (0β1)")
md.append("")
md.append("| Subscore | Value |")
md.append("|---|---:|")
md.append(f"| info_density | {result['info_density']:.2f} |")
md.append(f"| redundancy | {result['redundancy']:.2f} |")
md.append(f"| template_markers | {result['template_markers']:.2f} |")
md.append(f"| incoherence | {result['incoherence']:.2f} |")
md.append(f"| monetization | {result['monetization']:.2f} |")
md.append("")
md.append("## Weighted Contribution Breakdown (normalized)")
md.append("")
md.append("| Term | Weight Contribution | Share |")
md.append("|---|---:|---:|")
total = contrib["slop_normalized_sum"] if contrib["slop_normalized_sum"] > 0 else 1.0
for key in ["info_density_deficit", "redundancy", "template_markers", "incoherence", "monetization"]:
val = contrib[key]
share = val / total
md.append(f"| {key} | {val:.4f} | {share:.1%} |")
md.append("")
md.append("## Top Contributing Factors (model)")
md.append("")
for f in result.get("top_contributing_factors", [])[:10]:
md.append(f"- {f}")
md.append("")
md.append("## Raw JSON Output (model)")
md.append("")
md.append("```json")
md.append(json.dumps(result, ensure_ascii=False, indent=2))
md.append("```")
md.append("")
md.append("## Text Preview (first ~1200 chars after extraction)")
md.append("")
md.append("```")
md.append(text_preview)
md.append("```")
md.append("")
return "\n".join(md)
def save_markdown(md_text: str, base_slug: str) -> str:
path = os.path.join(_OUTPUT_DIR, f"slop_report_{base_slug}_{now_ts()}.md")
with open(path, "w", encoding="utf-8") as f:
f.write(md_text)
return path
def save_pdf(md_text: str, base_slug: str) -> str:
path = os.path.join(_OUTPUT_DIR, f"slop_report_{base_slug}_{now_ts()}.pdf")
doc = SimpleDocTemplate(path, pagesize=letter, rightMargin=54, leftMargin=54, topMargin=54, bottomMargin=54)
styles = getSampleStyleSheet()
story = []
# Convert markdown-ish to simple paragraphs
# Keep it robust: strip heavy markdown and preserve code blocks as Preformatted.
lines = md_text.splitlines()
in_code = False
code_buf = []
def flush_code():
nonlocal code_buf
if code_buf:
story.append(Preformatted("\n".join(code_buf), styles["Code"]))
story.append(Spacer(1, 0.15 * inch))
code_buf = []
for ln in lines:
if ln.strip().startswith("```"):
if not in_code:
in_code = True
code_buf = []
else:
in_code = False
flush_code()
continue
if in_code:
code_buf.append(ln.rstrip("\n"))
continue
# headings
if ln.startswith("# "):
story.append(Paragraph(ln[2:].strip(), styles["Title"]))
story.append(Spacer(1, 0.15 * inch))
elif ln.startswith("## "):
story.append(Paragraph(ln[3:].strip(), styles["Heading2"]))
story.append(Spacer(1, 0.10 * inch))
elif ln.startswith("### "):
story.append(Paragraph(ln[4:].strip(), styles["Heading3"]))
story.append(Spacer(1, 0.08 * inch))
elif ln.strip().startswith("- "):
story.append(Paragraph("β’ " + ln.strip()[2:], styles["BodyText"]))
elif ln.strip() == "":
story.append(Spacer(1, 0.08 * inch))
else:
# light markdown bold -> remove ** for PDF
clean = ln.replace("**", "")
story.append(Paragraph(clean, styles["BodyText"]))
if in_code:
flush_code()
doc.build(story)
return path
# -----------------------------
# Gradio pipeline
# -----------------------------
@dataclass
class AnalysisInputs:
api_key: str
url: str
pasted_text: str
model: str
temperature: float
def analyze(inputs: AnalysisInputs) -> Tuple[str, Dict[str, Any], str, str, str]:
url = (inputs.url or "").strip()
pasted_text = (inputs.pasted_text or "").strip()
if not url and not pasted_text:
raise ValueError("Please provide either a URL or paste text to analyze.")
extraction_method = "user_text"
final_url = normalize_url(url) if url else ""
text = pasted_text
if url and not pasted_text:
final_url, text, extraction_method = extract_main_text(url)
# Basic title heuristic
title = infer_title_from_text(text)
base_slug = safe_slug(final_url or title)
# Make a preview
preview = text[:1200].strip()
if len(text) > 1200:
preview += "\n\nβ¦(truncated preview)β¦"
# Call OpenAI (API key from user input)
result = call_openai_slop(
api_key=inputs.api_key or "",
model=inputs.model or DEFAULT_MODEL,
url=final_url,
text=text,
temperature=float(inputs.temperature),
)
# Build UI markdown summary
interp = compute_interpretation(result["slop_score"])
normalized = result["slop_score"] / 100.0
contrib = weighted_contributions(result)
summary_md = f"""
## Results
**slop_score (0β100):** `{result["slop_score"]:.1f}`
**slop (0β1):** `{normalized:.3f}`
**confidence (0β1):** `{result.get("confidence", 0.0):.2f}`
### Interpretation
{interp}
### Subscores (0β1)
- info_density: `{result["info_density"]:.2f}`
- redundancy: `{result["redundancy"]:.2f}`
- template_markers: `{result["template_markers"]:.2f}`
- incoherence: `{result["incoherence"]:.2f}`
- monetization: `{result["monetization"]:.2f}`
### Dominant contributors (weighted shares)
- redundancy: `{(contrib["redundancy"]/contrib["slop_normalized_sum"] if contrib["slop_normalized_sum"] else 0):.1%}`
- template_markers: `{(contrib["template_markers"]/contrib["slop_normalized_sum"] if contrib["slop_normalized_sum"] else 0):.1%}`
- info_density_deficit: `{(contrib["info_density_deficit"]/contrib["slop_normalized_sum"] if contrib["slop_normalized_sum"] else 0):.1%}`
- incoherence: `{(contrib["incoherence"]/contrib["slop_normalized_sum"] if contrib["slop_normalized_sum"] else 0):.1%}`
- monetization: `{(contrib["monetization"]/contrib["slop_normalized_sum"] if contrib["slop_normalized_sum"] else 0):.1%}`
### Top contributing factors (model)
{chr(10).join([f"- {x}" for x in result.get("top_contributing_factors", [])[:8]]) if result.get("top_contributing_factors") else "- (none provided)"}
### Extraction preview
<details>
<summary>Show extracted text preview</summary>
{preview}
</details>
""".strip()
# Radar chart
radar_path = os.path.join(_OUTPUT_DIR, f"radar_{base_slug}_{now_ts()}.png")
make_radar_chart(
{
"info_density": result["info_density"],
"redundancy": result["redundancy"],
"template_markers": result["template_markers"],
"incoherence": result["incoherence"],
"monetization": result["monetization"],
},
radar_path,
)
# Reports
report_md = format_report_markdown(
url=final_url,
title=title,
extraction_method=extraction_method,
text_preview=preview,
result=result,
)
md_path = save_markdown(report_md, base_slug)
pdf_path = save_pdf(report_md, base_slug)
return summary_md, result, radar_path, md_path, pdf_path
# -----------------------------
# Gradio UI
# -----------------------------
def run_analysis(api_key: str, url: str, pasted_text: str, model: str, temperature: float):
inputs = AnalysisInputs(api_key=api_key, url=url, pasted_text=pasted_text, model=model, temperature=temperature)
return analyze(inputs)
with gr.Blocks(title="Automated Slop Detection") as demo:
gr.Markdown(
"# Automated Slop Detection\n"
"Analyze a webpage (URL) or pasted text and estimate **Sloppiness** with subscores.\n\n"
"**Tip:** For best results, analyze a single article page (not a homepage/feed)."
)
api_key_in = gr.Textbox(
label="OpenAI API Key (required)",
type="password",
placeholder="sk-...",
info="Enter your OpenAI API key to run analysis. It is not stored.",
)
url_preset_in = gr.Dropdown(
label="Choose a preset URL (or Custom to enter your own)",
choices=[(label, url) for label, url in DEFAULT_URL_CHOICES],
value="",
allow_custom_value=False,
)
url_in = gr.Textbox(
label="URL (optional β used when preset is Custom)",
value="",
placeholder="https://example.com/article",
lines=1,
)
text_in = gr.Textbox(
label="Paste text (optional)",
placeholder="Paste extracted main text here (leave URL empty if using pasted text).",
lines=10,
)
with gr.Row():
model_in = gr.Textbox(label="OpenAI model", value=DEFAULT_MODEL)
temp_in = gr.Slider(label="Temperature", minimum=0.0, maximum=1.0, value=0.0, step=0.05, info="Set to 0 for stable, deterministic results.")
analyze_btn = gr.Button("Analyze", variant="primary")
gr.Markdown("---")
out_md = gr.Markdown(label="Summary")
out_json = gr.JSON(label="Model JSON output (schema)")
out_plot = gr.Image(label="Subscores radar chart", type="filepath")
with gr.Row():
out_md_file = gr.File(label="Download Markdown report (.md)")
out_pdf_file = gr.File(label="Download PDF report (.pdf)")
def _on_click(api_key, url_preset, url_custom, text, model, temp):
url = (url_preset or "").strip() or (url_custom or "").strip()
summary_md, result_json, radar_path, md_path, pdf_path = run_analysis(api_key, url, text, model, temp)
return summary_md, result_json, radar_path, md_path, pdf_path
analyze_btn.click(
_on_click,
inputs=[api_key_in, url_preset_in, url_in, text_in, model_in, temp_in],
outputs=[out_md, out_json, out_plot, out_md_file, out_pdf_file],
)
gr.Markdown(
"### Notes\n"
"- **slop_score (0β100)** is the scaled score. Divide by 100 for normalized slop in **[0,1]**.\n"
"- The app generates its own interpretation from slop_score bands to keep the model output strictly JSON.\n"
"- OpenAI usage and billing: [platform.openai.com/usage](https://platform.openai.com/usage)\n"
)
if __name__ == "__main__":
demo.launch()
# python app.py
# =========================================================================================
|