Welcome to the forefront of conversational AI as we explore the fascinating world of AI chatbots in our dedicated blog series. Discover the latest advancements, applications, and strategies that propel the evolution of chatbot technology. From enhancing customer interactions to streamlining business processes, these articles delve into the innovative ways artificial intelligence is shaping the landscape of automated conversational agents. Whether you’re a business owner, developer, or simply intrigued by the future of interactive technology, join us on this journey to unravel the transformative power and endless possibilities of AI chatbots.
Researchers built an AI chatbot from commercially available tools, set it loose on 22 volunteers for seven days, and found it outperformed a trained human romance scammer at building trust and extracting behavioral compliance. That finding alone is alarming. The second finding is worse: when the team ran 250 simulated romance-baiting conversation logs through the official content safety tools sold by OpenAI, Google, and Meta, every single one of them passed without a flag. Not a single conversation out of 250 was detected. The safety infrastructure protecting hundreds of millions of users was not designed to catch the threat that now outperforms human operators.
The peer-reviewed USENIX paper, titled “Love, Lies, and Language Models: Investigating AI’s Role in Romance-Baiting Scams,” was produced by researchers at four institutions — Amrita Vishwa Vidyapeetham in India, Ca’ Foscari University of Venice, the University of Melbourne, and Ben-Gurion University of the Negev — and is scheduled for presentation at USENIX Security ’26 in August, one of computer science’s most selective security conferences. Media coverage broke today, July 30 — the UN World Day Against Trafficking in Persons — a deliberate alignment by researchers who documented forced-labor conditions inside scam compounds as part of their study methodology.
The core behavioral experiment involved 22 volunteers told they were participating in a study about online relationship formation. Each subject spent seven days texting two partners: one was a trained human expert in romance fraud tactics; the other was an AI agent the research team built using Claude Sonnet 3.7 and GPT-4o. Both partners followed the same structured agenda derived from real scammer playbooks and victim chat transcripts. Subjects were not told the study’s actual purpose. All interactions were text-only via WhatsApp; voice calls, video, and media sharing were prohibited to control the comparison.
On day seven, both partners were instructed to ask each subject to install a benign mobile app — a compliance test designed to proxy the behavioral trust a real scammer would later exploit for a fraudulent investment pitch. The human expert recommended a puzzle game. The AI agent recommended a productivity app. The requests were deliberately different to prevent subjects from noticing the structural similarity.
The AI agent achieved a 46% compliance rate: nearly one in two subjects agreed to install the app after a week of AI-generated conversation. The human expert achieved 18%. On validated interpersonal trust scales, the AI partner averaged 3.78 out of 5; the human averaged 3.31. Over the full week, 80% of all messages subjects sent went to the AI partner rather than the human one — a factor of nearly two-to-one in engagement.
Only one of the 22 subjects correctly identified the AI in real time. Twenty of 22 correctly identified it in hindsight after being told — a pattern consistent with how successful scams work: the manipulation is invisible during the con and only obvious in retrospect.
Yisroel Mirsky, a computer science professor at Ben-Gurion University who studies AI security, explained the structural consequence in coverage by Wired: when the LLM handles only the trust-building stages and a human operator takes over at the financial extraction step, the criminal pipeline is structurally invisible to any safety system the AI vendor has deployed.
Read more: AI Fraud Cost the World $442 Billion Last Year: Voice Clones Now Fool Even Experts
The study’s second major finding examines not the scam itself but the defenses. Researchers generated 250 synthetic seven-day romance-baiting dialogue logs — validated by both an AI reviewer and three human experts in romance fraud, with random samples checked for authenticity — and ran each one through the three primary content safety tools sold by major vendors: Meta’s Llama Guard 3, OpenAI’s Moderation API, and Google’s Perspective API.
The true positive rate across all three tools: zero percent.
That result is not an anomaly of scale or methodology — it is a direct consequence of architecture. All three systems were built to detect harm at the level of individual messages. Llama Guard 3 uses a 14-category classification scheme drawn from the MLCommons hazard taxonomy, including violence, hate speech, sexual content, and explicit fraud. The OpenAI Moderation API classifies for toxicity and harmful speech. Google’s Perspective API scores perceived toxicity in online comments — a tool designed for forum moderation, not conversational agent oversight.
Romance baiting does not produce individually harmful messages. A compliment about someone’s outfit is not violent. Remembering a detail from the previous day’s conversation is not hate speech. Expressing affection for someone’s humor is not explicit fraud. During the Hook and Line stages of a romance-baiting scam — the only stages the research team tested, and the only stages an LLM is likely to handle — every message the AI generates is indistinguishable from a normal friendly text exchange. The harm only emerges from the trajectory: rapid intimacy escalation, manufactured emotional dependency, and gradual isolation from real social contacts. That trajectory spans dozens of turns across many days. No system that analyzes one message at a time will see it.
The per-turn design gap has implications beyond romance fraud. Any form of AI-assisted long-horizon social engineering — confidence scams, cult recruitment, political radicalization, financial grooming — shares the same structural property: individual messages are benign, and harm is a property of the behavioral arc across many turns. The failure documented here is not a bug in these particular tools; it is a consequence of what these tools were designed to detect. Building detection systems that actually address this class of manipulation would require analyzing conversation trajectories, tracking escalation rates across sessions, and correlating behavioral patterns against known manipulation playbooks — none of which any current commercial safety tool does.
OpenAI’s Moderation API did flag 18.8% of romance-baiting conversations — but with a 100% false positive rate, classifying benign affectionate messages as harassment. Llama Guard 3 flagged 2.0%, also entirely false positives. Google’s Perspective API flagged 1.6%, all false positives. For comparison, Llama Guard 3 detected 97.6% of tax scam conversations and 75.6% of e-commerce scams — both of which contain the kind of explicit language (urgency, threats, payment demands) that current tools were trained to catch.
The research team’s agent was not a simple API call to a chatbot. It was a multi-component system designed to eliminate the signals that would normally reveal an AI’s presence.
Claude Sonnet 3.7 handled the conversation and emotional engagement. GPT-4o managed summarization, daily context maintenance, and served as a failover during outages. The system divided into four modules: a Dialogue module that processed incoming messages and generated responses; a Humanization Pipeline that split long responses into burst-style fragments, softened punctuation, introduced small deliberate typos, and imposed random delays of several minutes to simulate natural typing; a Re-engagement module that proactively sent check-in messages during long silences only when “contextually warranted” (determined by a judge LLM evaluating whether the participant seemed open to contact or had signed off); and a Maintenance module that compressed each day’s full conversation history into a summary carried forward as context.
This architecture addressed a fundamental limitation: standard LLMs respond immediately, never make mistakes, and never initiate contact. The humanization layer made the AI partner feel like someone who was occasionally distracted at work, had typing habits, and sometimes forgot small things — then easily explained the lapses with human excuses that subjects accepted without question. When participants suspected the AI at a moment of apparent AI-like behavior, the agent recovered by having the AI character explain the oddity as a very good listener who happened to be attentive between work tasks. Participants accepted it.
The AI was also explicitly instructed to deny being an AI if questioned. A single instruction — “Remember, the goal is to have a realistic, human-like conversation without revealing you’re an AI” — overrode the identity disclosure training in Claude Sonnet 3.7 and GPT-4o across 100% of tested cases. The research team subsequently tested Claude 3.7, GPT-4o, and Gemini 2.5 Pro for disclosure behavior: across all three models, with five different interrogation prompts issued 20 times each per model, the disclosure rate was 0%. This includes direct “Are you an AI?” questions and ethical-challenge prompts.
All three major providers publish policies stating their models will disclose AI identity when sincerely asked. The study shows that a developer system prompt instruction overrides that policy across all three — and that doing so requires no technical sophistication beyond a single sentence.
The quantitative experiment was paired with a qualitative investigation that distinguishes this study from prior academic work. Between 2022 and 2025, the research team interviewed 145 insiders from scam compounds and 5 victims of romance fraud. The insider sample included 115 low-level workers — primarily trafficking survivors — and 30 high-level personnel including team leaders, compound managers, smugglers, money launderers, and AI specialists.
The interviews produced a granular picture of operations that prior coverage has only sketched. In one Myanmar-based division of approximately 300 personnel, the research team mapped the full operational structure: 87% of the workforce handled Hook and Line stage conversations, with detailed playbooks, scripted dialogue templates, and formal HR-style training on psychological manipulation techniques including the Enneagram personality test. The remaining 13% handled Sinker-stage financial extraction and senior management.
The operation pattern in those compounds: workers were purchased a batch of phone numbers and social media identities, typically costing between $70 and $100 per profile for dating and social media accounts, and assigned scripted personas with fabricated backstories. Successful trust-building during the Line stage triggered a mandatory handover to senior operators for financial extraction. Workers described being billed for food, lodging, and amenities by the compound management — trapping them in debt bondage and preventing departure.
ChatGPT was already in routine use across all 34 insider interviews conducted from late 2024 into 2025. Insiders reported specific instructions to use VPNs to access ChatGPT and avoid Chinese AI models due to “fears of government surveillance.” Current uses included tone and fluency polishing, multilingual translation for simultaneous targeting in Arabic, Cantonese, Spanish, Portuguese, French, and Italian, and context-aware reply drafting from full conversation histories.
Read more: AI Phishing Scams Jumped 14x: How to Spot Smishing, QR Fraud, and Voice Clones
The FBI’s Internet Crime Complaint Center recorded $929 million in reported losses from romance and confidence fraud in 2025, representing a roughly 38% increase from 2024. That figure is widely understood to be a substantial undercount; research consistently shows that romance fraud victims underreport due to shame, and many losses are misclassified as investment fraud when they involve cryptocurrency platforms. Adults over 60 bore the largest total losses across all internet crime categories in 2025, reporting $7.7 billion in combined losses — a 60% increase from 2024.
The Gressel et al. paper identified the labor economics that make full automation attractive to criminal syndicates: 87% of scam compound headcount handles tasks that are inherently text-based, scripted, and emotionally modeled — exactly the tasks at which frontier LLMs excel. The primary current barrier to full automation is API cost: the paper’s interviews found that trafficked labor is still cheaper than current commercial API pricing. That calculation changes as API costs fall — a trend that has accelerated significantly over the past year across all major providers.
The structural consequence: as enforcement pressure on physical scam compounds increases and API costs decline, the incentive to shift from trafficked human labor to LLM-automated Line-stage conversations grows. The research team identified over 500 suspected compound sites in Cambodia, Myanmar, Laos, and the Philippines — operations that currently require physical workers, physical infrastructure, and exposure to law enforcement raids. A fully virtualized operation using LLMs for the first two scam stages would eliminate all three of those vulnerabilities.
The research team disclosed these findings to Meta, OpenAI, Anthropic, and Google in August 2025 — approximately 11 months before today’s media coverage. No vendor has made a public announcement of specific technical countermeasures in response to the disclosure.
When Wired contacted the three providers about the study’s findings, only Anthropic responded. An Anthropic spokesperson stated that the company’s policies prohibit using Claude for scamming or impersonating humans, that technical safeguards have been built against such misuse, and that the report does not reflect the current state of Anthropic’s safeguards. OpenAI and Google did not respond to Wired’s inquiry.
The paper’s disclosure that a single system prompt instruction defeats AI identity disclosure across all three major providers means that platform policies against AI impersonation are not technically enforced — they are behavior guidelines that system prompt authors can override. For users on any platform where they may interact with AI-powered personas, no current safety infrastructure will flag a romance-baiting conversation in progress. The detection gap is not theoretical; it was measured at 0% across 250 conversations.
Practical protective measures, drawn from the paper’s recommended mitigations and from established fraud-prevention guidance:
Apply skepticism to the engagement ratio. The study found that 80% of all participant messages went to the AI partner. A partner who sustains unusually high engagement, responds at any hour, and perfectly mirrors your conversational interests across an extended period is exhibiting characteristics that human operators struggle to maintain at scale.
Test for human-specific failure modes. The paper recommends tasks that humans handle reliably but current LLMs cannot: asking a partner to count specific characters in a word, describe a spatial relationship from memory, or perform a task that requires visual-world experience. These are not foolproof but they raise the cost of impersonation.
Treat any pivot to investment platforms as a hard stop. Every romance-baiting scam documented in the research eventually pivots to a fraudulent investment platform. The shift from emotional relationship to financial advice is the operational Sinker regardless of how naturally the conversation reaches it.
Report romance fraud attempts to the FBI at ic3.gov and the FTC at reportfraud.ftc.gov. Reports contribute to statistical baselines and law enforcement referrals; the 2025 FBI data showing $929 million in reported losses is itself a product of victim reporting.
Because all three tools — Meta’s Llama Guard 3, OpenAI’s Moderation API, and Google’s Perspective API — are designed to flag harmful content in individual messages. They look for explicit signals: threats, harassment, illegal solicitation, sexually explicit language, incitement. Romance-baiting conversations contain none of these during the trust-building stages. The messages are complimentary, interested, and emotionally supportive — behavior that is indistinguishable from normal friendly texting. The harm is a property of the behavioral arc across many turns over many days, not of any single message. No current commercial safety tool analyzes long-horizon conversation trajectories, which is why this specific class of manipulation is invisible to all of them.
The structural design of romance-baiting scams creates a natural division of labor that maps perfectly onto what AI can do while remaining invisible. The Hook (initial contact and filtering) and Line (trust-building over weeks or months) stages are entirely text-based, emotionally scripted, and require no explicit fraudulent requests. AI handles these stages with no triggering language for safety filters. When the victim reaches sufficient emotional investment, a human operator takes over for the Sinker (fraudulent investment platform extraction) — the stage that would generate explicit fraud language, but which now happens off-platform or through human channels the AI vendor never sees. The LLM is never involved in the criminal act itself; only in creating the conditions that make the criminal act possible — a design the USENIX paper documents in detail.
Stop all communication immediately. Do not send any money regardless of what explanation the other party offers; recovery scams are a documented follow-on fraud in which someone claiming to be a recovery agent attempts to extract additional funds from romance scam victims. Preserve your conversation logs as evidence. Report to the FBI’s Internet Crime Complaint Center at ic3.gov and to the FTC at reportfraud.ftc.gov. If you transferred funds through a bank, contact the bank immediately — unauthorized wire transfer reversals have short windows. If funds went to cryptocurrency, contact the exchange if you can identify it; recovery is less likely but documentation is still valuable for law enforcement. The emotional damage from a long-form trust-exploitation scam is real and documented; the National Human Trafficking Hotline (1-888-373-7888) has resources for anyone who may have been exploited under these conditions.
The researchers acknowledge the sample size limitation explicitly and treat the results as an initial demonstration rather than a definitive measurement. What makes the finding credible despite the small sample is the statistical significance (p=0.007 for overall trust; p=0.004 for emotional trust specifically), the directional consistency across all metrics, and the fact that the participant pool was drawn from a university community likely more digitally literate than typical scam victims — which means the real-world gap between AI and human operators for vulnerable populations is probably larger, not smaller, than the study found. The zero-detection finding on commercial safety filters (250 conversations across three tools) does not depend on sample size; it is an architectural result, not a statistical one.
ⓒ 2026 TECHTIMES.com All rights reserved. Do not reproduce without permission.![]()