¿Puedo vibecodear Pangram?
NO TANTO · sigue valiendo pagarloThe interface is a text box and a percentage, which is exactly the kind of thing that tricks you into thinking it is a weekend project. The product is not the text box: it is a classifier trained on a very large, continuously refreshed corpus of human writing paired with output from every model release, tuned hard against false positives because accusing a real person of cheating is the failure mode that ends the company. You can absolutely build a local detector from perplexity and burstiness features in an afternoon, and it will be confidently wrong often enough to be useless for any decision that matters. Nobody outside your own head will accept your homemade score, and the calibration drifts every time a new frontier model ships. Build it to understand the problem, not to rely on it.
Build a local AI-text-detection playground so I can see how weak naive detection actually is. No cloud calls, no accounts, no telemetry. Stack, no substitutions: Python 3.11, FastAPI + uvicorn, transformers + torch, a single server-rendered HTML page with vanilla JS. No build step, no database, no Docker. Core loop: 1. One page with a large textarea and an Analyze button. 2. POST /analyze takes the text and returns a JSON report. 3. Scoring runs entirely locally with gpt2 (small) loaded once at startup via transformers. Download on first run and cache it. Features to compute per submission: - Mean token log-probability and perplexity under gpt2. - Burstiness: standard deviation of per-sentence mean log-probability. - Rank-based signal: fraction of tokens that were in the model's top-10 predictions. - Style stats: sentence length mean and variance, type-token ratio, punctuation counts, count of common LLM filler phrases from a hardcoded list. Output: a 0-100 score from a simple weighted formula over those features with the weights in a single WEIGHTS dict at the top of the file, per-sentence heat colouring in the page, and a full feature table so I can see what drove the score. Calibration, and be honest about it: - Add a CLI command: python calibrate.py --human dir --ai dir that runs the features over two folders of .txt files, prints mean and spread per class, and prints the ROC AUC of the current weights. - The web page must show a fixed banner: this is an uncalibrated heuristic, not evidence, false positives are common. Explicitly out of scope: user accounts, saved history, PDF or DOCX parsing, any hosted API, model fine-tuning, mixed-authorship segmentation, batch uploads. Deliver: main.py, calibrate.py, features.py, templates/index.html, requirements.txt, and a README with run instructions and one paragraph stating plainly why this cannot match a trained commercial detector. No .env needed since there are no secrets; say so in the README.
$ ábrelo en tu agente (prompt listo, tú das enter) o cópialo crudo
prompt copied. want to know what dies next week?
veredictos nuevos + votos de la semana. gratis. te sales en un clic.
Because the number has to be defensible to someone else. Institutions and publishers are not buying a classifier, they are buying a third party willing to stand behind a false positive rate, plus continuous retraining against whatever model came out last month. A local heuristic detector gives you a plausible-sounding percentage with no error bars, which is worse than nothing when the outcome is an accusation.
xCalibration: a real false positive rate you can quote, instead of a vibe
xCoverage of new models, which changes every few weeks whether you update or not
xSentence-level and mixed-authorship detection rather than one blunt document score
xAny external credibility, since a self-built score persuades exactly zero teachers, editors or clients
xThroughput, batch uploads, API access and document parsing
Nada que valga la pena señalar. Por eso existe el prompt.
¿Puedo vibecodear Pangram?
No tanto. El valor de Pangram no es el código. Mira el desglose honesto arriba.
¿Cuánto cuesta Pangram?
Pangram cuesta unos $20/mes (Individual, revisado 2026-08-18), o sea $240 al año.
¿Qué pierdo si reemplazo Pangram?
Con honestidad: Calibration: a real false positive rate you can quote, instead of a vibe; Coverage of new models, which changes every few weeks whether you update or not; Sentence-level and mixed-authorship detection rather than one blunt document score; Any external credibility, since a self-built score persuades exactly zero teachers, editors or clients; Throughput, batch uploads, API access and document parsing. Si alguno de esos te sostiene el negocio, sigue pagando.
¿Hay una alternativa open source a Pangram?
No hay una alternativa open source madura que valga señalar. Por eso existe el prompt de esta página.