EveryDev.ai
Subscribe
Home
Tools

3,965+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Von
    Von icon

    Von

    AI Development Libraries
    Featured

    An open-source, non-autoregressive System One decision model delivering calibrated discrete, probabilistic, and ordinal inference in sub-25ms, running locally without autoregressive text generation.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under Apache 2.0. Run locally with no usage limits or cost.

    Engagement

    Available On

    Linux
    API
    SDK
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    AI Development LibrariesLocal InferenceLLM Orchestration

    Alternatives

    OllamaMiniMindWebLLM
    Developer
    wfzyxwfzyx is an independent open-source developer building Von,…

    Listed Sep 2026

    About Von

    Von is an open-source, non-autoregressive decision model built on ModernBERT-Large (395M parameters) that performs classification, intent routing, and guardrail validation in a single forward pass — without the token-by-token generation overhead of large language models. Licensed under Apache 2.0, it runs entirely in-process or via an HTTP server and targets latency-sensitive pipelines where autoregressive LLMs introduce 500–2,000ms delays and nondeterministic schema parsing errors.

    What It Is

    Von implements what its README calls the System One computational paradigm: reflexive, parallel, deterministic, and statistically calibrated decision-making. Rather than generating text, Von evaluates arbitrary discrete and continuous criteria directly over input state in a single forward pass. It exposes three core decision primitives — Choice (categorical classification), Noul (binary probability verification), and Score (ordinal continuous rating) — and supports evaluating multiple heterogeneous questions simultaneously via a system_one fan-out API. The model is named in recognition of John von Neumann and Ludwig von Mises, two foundational figures in computation and decision theory.

    Architecture and Training

    Von-1.0 is built on ModernBERT-Large, pretrained on 2 trillion tokens of general web text, technical literature, and code. It is fine-tuned on a ~290,000-example balanced multi-domain corpus spanning operational/enterprise workflow (~25%), security/DevOps/compliance (~20%), safety/policy/moderation (~15%), linguistic/content semantics (~15%), triage/services (~10%), and adversarial reasoning anchors (~15%).

    Post-training uses Reinforcement Learning with Calibration Distribution (RLCD), minimizing a composite loss of Cross-Entropy and Brier Score (λ=0.5) to simultaneously optimize classification accuracy and probabilistic calibration. Temperature scaling converges at T=1.1692, yielding near-ideal expected calibration error (ECE). The result is output probabilities that reflect true predictive confidence rather than overconfident point estimates.

    Benchmark Performance

    Von's README reports the following benchmark results across two independent evaluation suites:

    • jabr v2 benchmark (49 tasks, 869 cases, out-of-domain decision making): Von achieves 71.5% macro accuracy, leading all open local System One models. Choice routing reaches 83.4%, with symptom triage at 100.0%, home services at 95.7%, and city routing at 94.7%.
    • ViZDoom real-time robotics/gaming (8-seed evaluation, zero-shot from structured scene text): Von achieves 9.38 average kills in Defend the Center at sub-18ms latency, outperforming TypeSafe's proprietary Jev 1.13 API (5.62 kills at ~115ms) by +66.9%.

    The benchmark table in the README compares Von against GLiNER2, finetuned Qwen3.5 4B, Laya, and TypeSafe Jev across model size, accuracy, latency, and hosting model.

    Hardware and Deployment

    Von runs hardware-agnostically with native kernel optimization across:

    • NVIDIA CUDA
    • AMD ROCm (Linux)
    • Apple Silicon Metal Performance Shaders (MPS)
    • Multithreaded CPU

    It can be deployed in-process via the Python SDK (pip install von-sdk) or TypeScript/JavaScript SDK (bun add von-sdk / npm install von-sdk), or as a production HTTP server via von serve compatible with the /v1/systemone wire protocol. Pre-packaged presets cover support ticket triage, email security/routing, content moderation, and security event triage. Composable patterns include confidence gating, route dispatch, composite risk scoring, and two-stage routing for high-cardinality taxonomies.

    Current Status

    The repository was created on September 18, 2026 and last updated September 21, 2026, with 235 stars and 22 forks at time of indexing. The model weights are published on Hugging Face at wfzyx/von-1.0. The project is actively maintained under Apache 2.0 and positioned as a local, free drop-in alternative to the proprietary TypeSafe Jev API for System One decision workloads.

    Von - 1

    Community Discussions

    Be the first to start a conversation about Von

    Share your experience with Von, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under Apache 2.0. Run locally with no usage limits or cost.

    • Full model weights (wfzyx/von-1.0 on Hugging Face)
    • Python SDK (von-sdk)
    • TypeScript/JavaScript SDK
    • HTTP server via von serve
    • All decision primitives: Choice, Noul, Score

    Capabilities

    Key Features

    • Non-autoregressive single forward pass inference
    • Sub-25ms GPU latency
    • Choice: categorical classification with calibrated probability distribution
    • Noul: binary probability verification with dual positive/negative framing
    • Score: ordinal continuous rating via expected value
    • system_one fan-out: evaluate multiple heterogeneous questions in one pass
    • RLCD post-training with joint Cross-Entropy and Brier Score loss
    • Temperature scaling for calibrated uncertainty (T=1.1692)
    • Hardware-agnostic: CUDA, ROCm, Apple MPS, CPU
    • Production HTTP server via `von serve` with /v1/systemone protocol
    • Pre-packaged presets: triage, email, moderation, security
    • Composable patterns: confidence gating, route dispatch, composite scoring, two-stage routing
    • Python and TypeScript/JavaScript SDKs
    • Apache 2.0 open-source license
    • Hugging Face model weights (wfzyx/von-1.0)

    Integrations

    Hugging Face
    Python
    TypeScript
    Node.js
    Bun
    NVIDIA CUDA
    AMD ROCm
    Apple Metal Performance Shaders
    ViZDoom
    ModernBERT-Large
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Von and help others make informed decisions.

    Developer

    wfzyx

    wfzyx is an independent open-source developer building Von, a non-autoregressive System One decision model for sub-25ms local inference. The project publishes model weights on Hugging Face and ships Python and TypeScript SDKs under the Apache 2.0 license. Von is positioned as a free, local alternative to proprietary decision model APIs for classification, intent routing, and guardrail validation workloads.

    Read more about wfzyx
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Ollama icon

    Ollama

    Run large language models locally on your machine with a simple CLI and REST API, with optional cloud scaling for larger models.

    MiniMind icon

    MiniMind

    An open-source project to train a 64M-parameter LLM from scratch in 2 hours on a single GPU, covering the full pipeline from tokenizer to RLAIF.

    WebLLM icon

    WebLLM

    A high-performance, in-browser LLM inference engine that runs large language models directly in web browsers using WebGPU hardware acceleration, with no server-side processing required.

    Browse all tools

    Related Topics

    AI Development Libraries

    Programming libraries and frameworks that provide machine learning capabilities, model integration, and AI functionality for developers.

    312 tools

    Local Inference

    Tools and platforms for running AI inference locally without cloud dependence.

    197 tools

    LLM Orchestration

    Platforms and frameworks for designing, managing, and deploying complex LLM workflows with visual interfaces, allowing for the coordination of multiple AI models and services.

    231 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions