Topic

Fraud Detection

All digests tagged Fraud Detection

How to use Jev to automate your business (Step-by-step w/ Treg) thumbnail

· 14:29

How to use Jev to automate your business (Step-by-step w/ Treg)

This talk introduces Jev, a specialized model designed for reliable, high-accuracy business automation rather than creative text generation. Unlike general-purpose LLMs, Jev is optimized for structured decision-making, providing probability distributions for a limited set of options. This makes it ideal for mission-critical workflows requiring near-100% accuracy, such as fraud detection, internal link mapping, and classifying user intent, while being significantly faster and cheaper than large general models.

Key takeaways

  1. Jev's Core Advantage

    Jev is designed for reliable, high-quality decision-making, outputting the probability of a list of given answers rather than predicting text token by token. This makes it extremely fast and cost-effective for high-volume business workflows.

  2. Confidence Scoring 2:00

    Every answer Jev provides comes with a probability distribution (confidence score). This allows developers to build sophisticated business logic (e.g., if confidence > 70%, auto-block; if 35% < confidence < 70%, request human review).

  3. Use Case: Browser Automation 3:40

    Jev can predict the next action (click, type) and the target UI element based on the DOM and interaction history, enabling fast and accurate browser and computer use for agent systems.

  4. Workflow Example: Fraud Detection 7:30

    By combining Jev with data services like Track, users can build automated pipelines to classify signups (e.g., fraud, upsell value, affiliate) using thousands of data points, making previously uneconomical automation possible.

Watch on YouTube Full article

AI Agents Are Starting To Buy. Stripe Is Building How They Pay. thumbnail

· 30:49

AI Agents Are Starting To Buy. Stripe Is Building How They Pay.

The video explores the emerging economic infrastructure required for AI agents to become reliable, autonomous economic actors. The core argument is that the shift from human-driven commerce to agent-driven commerce necessitates fundamental changes in trust, billing, and fraud detection. Stripe, in particular, is building the necessary financial rails, moving the focus from simple transaction-level fraud to pre-transaction abuse, such as stealing tokens. Key architectural shifts include adopting usage-based and outcome-based pricing models, and developing sophisticated systems to manage agent autonomy and financial risk.

Key takeaways

  1. AI agents are fundamentally changing commerce, making the infrastructure the bottleneck. 0:20

    The current AI wave is shifting commerce from simple tasks to complex buying and selling. The challenge is building a system that can be 100% trusted when a computer (agent) is making purchase decisions on behalf of a user. (00:00, 02:00)

  2. Fraud prevention must evolve from transaction-level to pre-transaction abuse detection. 20:30

    Traditional fraud systems (like Radar) focus on the moment of transaction. However, the new threat involves 'stealing tokens' or abusing free credits *before* a transaction occurs, requiring a shift to identifying abusive or risky customers across the entire network. (07:57, 12:30)

  3. The future of billing requires moving beyond subscriptions to outcomes.

    The industry is moving toward outcome-based pricing, where customers pay for the delivered value (the outcome) rather than fixed subscriptions or raw resource costs (like GPU/inference cost). This requires complex billing stacks and machine-readable payment protocols. (03:27, 24:59)

  4. Agent autonomy requires a dedicated 'wallet' and explicit user approval rails.

    For agents to operate safely, a dedicated wallet (like Stripe Link) is needed to manage spending. Crucially, the user must maintain control, requiring explicit approval rails for spending, even if the agent is goal-motivated. (07:33, 32:00)

Watch on YouTube Full article

Let's integrate AI Agents in Event-Sourced Systems — Divakar Kumar, FlyersSoft thumbnail

· 21:37

Let's integrate AI Agents in Event-Sourced Systems — Divakar Kumar, FlyersSoft

The presentation outlines an advanced architectural pattern for integrating AI agents into existing enterprise systems, specifically targeting real-time fraud detection. Instead of replacing established Rule-Based Engines or ML models, the approach layers agentic intelligence to resolve 'gray zone' transactions—cases where current deterministic systems lack sufficient context. The architecture leverages Event Sourcing and Domain-Driven Design (DDD) principles by building a centralized semantic layer that aggregates data from multiple bounded contexts (e.g., Transaction, Device, Account). Agents then consume this enriched context via an orchestration layer in a saga pattern to reach a final verdict.

Key takeaways

  1. AI Agents Augment, Not Replace, Existing Systems

    The primary value of AI agents is not replacing existing systems (like rule-based or ML engines) but rather adding an agentic layer to handle ambiguous cases—the 'gray zone' where current models lack necessary context. The goal is to enhance business workflows using the state and history already captured by event sourcing.

  2. Context Aggregation via Semantic Layer 17:37

    To provide sufficient context for agents, data from disparate bounded contexts (Transaction, Device, Account, Payment) must be aggregated into a semantic layer or materialized view. This is achieved by propagating domain events using Change Data Capture (CDC) mechanisms or message brokers.

  3. Saga Orchestration and Agentic Decision Making

    The system uses an orchestration layer to manage the process. This layer employs a fan-out pattern, sending events simultaneously to multiple specialized agents (e.g., Risk Analyzer Agent, Behavior Analyzer Agent). A final Verdict Agent then analyzes these responses to reach a consensus event.

Watch on YouTube Full article