EveryDev.ai
Subscribe
Home
Tools

3,121+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
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. Frugon
    Frugon icon

    Frugon

    AI Infrastructure
    Featured

    A free, local, open-source CLI tool that analyzes your LLM call logs to identify which API calls could be handled by cheaper models, projecting monthly cost savings without uploading any data.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT license. Install via uvx, pipx, or pip. No accounts, no telemetry, no usage limits.

    Engagement

    Available On

    Windows
    macOS
    Linux
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    AI InfrastructureCommand Line AssistantsPerformance Metrics

    Alternatives

    ClauditLocalScoreColab CLI
    Developer
    Rodiun LtdLeeds, United KingdomEst. 2025

    Listed Jul 2026

    About Frugon

    Frugon is a free, MIT-licensed command-line tool built by Rodiun Ltd that reads your LLM request logs locally and shows exactly where your AI API spend can be reduced by routing calls to cheaper models. It runs entirely on your machine — no accounts, no telemetry, no data uploads — and is available on macOS, Linux, and Windows for Python 3.10–3.13. The current release is v0.2.4, published on PyPI in July 2026.

    What It Is

    Frugon is a local-first LLM cost analyzer in the FinOps/LLMOps category. It ingests JSONL log files in the OpenAI/Anthropic request-response format and produces a routing recommendation: which percentage of your calls can safely move to a cheaper model, and which should stay on the expensive one. The analysis uses token counting via the tokencost library, pricing data synced weekly from the LiteLLM registry, and quality tiers anchored to LMArena rankings — no LLM calls are made during the analysis itself.

    How the Analysis Works

    Frugon assembles three existing, verifiable data sources rather than inventing its own methodology:

    • Token counting & pricing — uses tokencost for tokenization and the LiteLLM model registry for per-token prices, re-synced weekly via CI or on demand with frugon pricing update.
    • Quality tiers — anchored to LMArena rankings so the "within tolerance" label reflects a published benchmark, not a proprietary score.
    • Savings ranges — informed by RouteLLM/LMSYS published research, which reports 30–50% savings on general mixed workloads, up to ~85% on easy/repetitive traffic, and ~30% on hard reasoning tasks. Frugon's output is always derived from your actual log data, not these ranges.

    An optional --measure flag samples real prompts through your own provider API keys (sent directly to your provider, never to a Frugon endpoint) to verify quality estimates against actual outputs.

    Getting Logs and Running an Analysis

    Two paths exist for producing the required JSONL input:

    • frugon capture — a local HTTP proxy shim that sits between your app and your provider, forwarding every call unchanged and saving it as a JSONL line. It adds no latency overhead and makes no calls to any Frugon endpoint.
    • Write JSONL directly — if you already capture logs via middleware or SDK callbacks, write one JSON object per line with model, request, response, usage, and an optional timestamp field.

    Once logs exist, a single command (uvx frugon analyze ./logs.jsonl) produces a cost breakdown, a routing split (e.g., "route 64% of easy calls to deepseek-v4-flash, keep 18% on gpt-5.5"), and projected monthly savings. Adding --report savings.html generates a shareable HTML or Markdown report for team or budget reviews.

    Target Audience

    The README identifies five primary use cases: agent builders running expensive frontier models on simple hops, AI dev teams with real monthly LLM bills, RAG and support pipelines where the retrieval step is cheap but the answer call is not, data-ETL pipelines with repetitive batch extraction, and indie hackers optimizing runway. The tool is deliberately scoped to six commands (analyze, capture, models, update, pricing, quality) with gateways, live routing proxies, web UIs, and multi-tenant accounts explicitly out of scope.

    Update: v0.2.4

    The latest release, v0.2.4, was published to PyPI on 2026-07-06. The repository was created on 2026-06-20 and last pushed on 2026-07-09, indicating active early development. The homepage notes that continuous automatic routing (as opposed to the current one-time snapshot analysis) is a planned future capability, with an email waitlist for notification when it ships.

    Frugon - 1

    Community Discussions

    Be the first to start a conversation about Frugon

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

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT license. Install via uvx, pipx, or pip. No accounts, no telemetry, no usage limits.

    • Local LLM cost analysis from JSONL logs
    • frugon capture proxy shim for log collection
    • Routing recommendations with quality tiers
    • Shareable HTML/Markdown reports
    • Weekly pricing sync from LiteLLM registry

    Capabilities

    Key Features

    • Local-only LLM cost analysis — no data uploads, no telemetry
    • Reads OpenAI/Anthropic-style JSONL request logs
    • Token counting via tokencost library
    • Pricing synced weekly from LiteLLM registry
    • Quality tiers anchored to LMArena rankings
    • Routing recommendation: which calls to move vs. keep
    • Optional --measure flag to verify quality with your own provider keys
    • frugon capture proxy shim to record logs without code changes
    • Shareable HTML and Markdown report output (--report)
    • Supports multiple candidate models for comparison
    • Works with OpenAI, Anthropic, and compatible providers
    • No accounts required, ever
    • Fast local analysis — comfortable past 100k records
    • Demo mode with bundled ~56,100-call sample dataset
    • frugon models command to browse available candidate models
    • frugon pricing update to manually refresh pricing data

    Integrations

    OpenAI API
    Anthropic API
    LiteLLM model registry
    tokencost
    LMArena quality tiers
    RouteLLM/LMSYS research
    PyPI
    uvx / pipx / pip
    OpenRouter
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

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

    Developer

    Rodiun Ltd

    Rodiun Ltd builds local-first developer tools for LLM cost optimization and AI infrastructure. The company publishes Frugon, an open-source CLI analyzer that helps teams identify and reduce wasteful LLM API spend without sending data to any third party. Rodiun operates under an MIT-first philosophy, keeping core tooling free and open while developing complementary commercial capabilities such as continuous automatic routing.

    Founded 2025
    Leeds, United Kingdom
    1 employees
    Read more about Rodiun Ltd
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Claudit icon

    Claudit

    A CLI tool for auditing Claude AI usage and costs across your organization.

    LocalScore icon

    LocalScore

    An open benchmark tool that helps you understand how well your computer can handle local AI tasks.

    Colab CLI icon

    Colab CLI

    A command-line interface for Google Colab that provisions CPU, GPU, and TPU runtimes, executes local code, manages remote files, and orchestrates automated cloud pipelines from the terminal.

    Browse all tools

    Related Topics

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    313 tools

    Command Line Assistants

    AI-powered command-line assistants that help developers navigate, search, and execute terminal commands with intelligent suggestions and context awareness.

    179 tools

    Performance Metrics

    Specialized tools for measuring, evaluating, and optimizing AI model performance across accuracy, speed, resource utilization, and other critical parameters.

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