Skip to main content

free-fleet

CI License: MIT Python 3.10+

CSV in → source-grounded CSV out. Every record cites a verbatim quote at [start, end] character offsets. Quotes are checked automatically; claims and interpretations still need review.

Coordinated fleet for high-throughput, evidence-grounded batch extraction across free, paid, and local LLMs — with SQLite checkpointing, Bayesian route scoring, and deterministic quote verification.

Canonical CLI is free-fleet. bulk-lanes remains as a deprecated shim (removed in 0.3.0).


30-Second Example: CSV In, Verified CSV Out

Suppose you have customer feedback in feedback.csv:

id,comment
fb_1,"The onboarding was smooth, but the checkout button gave a 500 error."
fb_2,"Fast shipping and the packaging was completely recyclable."
fb_3,"Customer support never answered my email about the missing invoice."

1. Initialize a task and run

# Initialize a typed triage task preset (priority, reason, grounded quotes)
free-fleet init customer-triage --preset triage

# Process the CSV using intelligent model routing
free-fleet run customer-triage --input feedback.csv --id-column id --text-column comment --run-id triage-01

2. Export verified results

free-fleet export triage-01 --format csv --output results.csv

3. Output (results.csv)

item_id,priority,reason,primary_quote_text,quote_count,source_uri,source_digest
fb_1,high,"Checkout button failure blocks user purchase","checkout button gave a 500 error",1,"",a8f110...
fb_2,low,"Positive customer feedback on eco packaging","packaging was completely recyclable",1,"",4c2b81...
fb_3,medium,"Support request regarding invoice remains unanswered","never answered my email about the missing invoice",1,"",9e11fd...

Outputs contain structured claims paired with verbatim quotes deterministically verified against the raw source text.


Why You Can Trust the Output

Every output row is gated through deterministic checks before it is committed to SQLite. If any check fails, the batch rotates to the next route — nothing unverified is exported.

  1. Deterministic Quote Verification: Cited quotes are checked against the raw source text at character-level precision and resolved to canonical [start, end] offsets. Fabricated or altered quotes fail grounding and trigger immediate route rotation. (This proves all cited quotes are verbatim source substrings; whether a claim is truly entailed by its quote remains model-generated.)
  2. Closed JSON Schemas: Outputs adhere strictly to closed JSON Schemas defined in TaskSpec. Models cannot add fields, emit markdown, or drift out of schema.
  3. Intelligent Route Scoring: Bayesian-smoothed scoring by verification rate, grounding accuracy, malformed-JSON rate, and latency — not round-robin. Best routes are tried first.
  4. Non-Destructive Rate-Limit Handling: On 429 or 5xx, the route is cooled down and the batch is retried immediately on the next lane with 0 attempt burn.
  5. Zero-Price Circuit Breaker & Spend Ceilings: For zero-price runs, pricing is observed from provider receipts; a non-zero charge trips the breaker and disables the route. For paid runs, --max-request-cost enforces per-request caps.

Live proof: free-fleet status <run_id> --watch streams batch progress and per-route Verified / Rate limits / Latency. Fabricated quotes show up instantly as grounding_failed and the next lane is tried.


Quickstart — 60-Second Demo (No API Keys)

git clone https://github.com/NatesVibeCode/free-fleet.git
python3 -m pip install ./free-fleet

# Deterministic offline demo: writes in the current workspace, registers a fake
# zero-cost route, runs the bundled examples, and writes a verified packet + CSV.
free-fleet quickstart --demo --run-id demo-01

# Outputs:
#   runs/demo-01/clean_packet.json   (self-validating packet)
#   runs/demo-01/clean_packet.csv    (flat CSV)

Use Python 3.10+ in a virtual environment. The demo makes no model API calls and is excluded from real campaigns unless explicitly selected. It checks the pipeline, not model quality.

Named providers use their own environment variables (for example OLLAMA_BASE_URL or GROQ_API_KEY). OPENAI_COMPATIBLE_BASE_URL and OPENAI_COMPATIBLE_API_KEY configure only --provider openai_compatible. .env files are not loaded automatically. Install the account-fleet fork in a separate virtual environment because both distributions share a Python package and CLI aliases.

Real Workspace

mkdir my-workspace && cd my-workspace
free-fleet setup --workspace-root "$PWD" --refresh-routes

Presets

Create typed tasks instantly with built-in presets:

free-fleet init score-demo --preset score             # Numerical 0-100 score + grounded reasoning
free-fleet init filter-demo --preset filter           # Boolean qualification pass/fail gate
free-fleet init triage-demo --preset triage           # Priority (high/medium/low) + reason
free-fleet init classify-demo --preset classify       # Categorical labels + summary
free-fleet init extract-demo --preset extract         # Named entities + summary
free-fleet init summarize-demo --preset summarize     # Supported fact summaries

Validate and test before launching large runs:

# Validate task spec and input without making any API calls
free-fleet validate score-demo --input input.jsonl

# Test a single real batch
free-fleet test score-demo --input input.jsonl

Core Capabilities

1. CSV In / Scored, Ranked CSV Out

Directly process tabular data and export sorted, ranked deliverables with exact source quotes:

# Run on CSV specifying ID and text columns (or let free-fleet auto-detect them)
free-fleet run score-demo --input accounts.csv --run-id accts-01

# Export ranked deliverable: sorted by score descending, top 25, with 1-indexed rank column
free-fleet export accts-01 --format csv --sort-by score --desc --top 25 --rank --output ranked_target_accounts.csv

2. The Compounding Filter (Chaining Layers)

Run multi-stage funnel filtering without running monolithic prompts or wasting model compute:

# Layer 1: Filter down to survivors
free-fleet run l1-task --input 1000_candidates.csv --run-id l1
free-fleet export l1 --format csv --filter "passed=true" --output l1_survivors.csv

# Layer 2: Only run on survivor IDs from Layer 1
free-fleet run l2-task --input tech_docs.csv --only-ids l1_survivors.csv --run-id l2
free-fleet export l2 --format csv --filter "passed=true" --output l2_survivors.csv

# Final Layer: Score survivors and rank top candidates
free-fleet run l3-task --input gap_analysis.csv --only-ids l2_survivors.csv --run-id l3
free-fleet export l3 --format csv --sort-by score --desc --top 25 --rank --output ranked_deliverable.csv

3. Live Run Monitoring

Track queue progress, worker concurrency, and route-level metrics in real time:

free-fleet status <run_id> --watch

Output:

============================================================
Run: triage-01  |  Task: customer-triage  |  Status: RUNNING
Progress: [=========================>              ] 62.5% (650/1040)
============================================================
Batches:
  Pending:    15
  Leased:      4
  Done:       65
  Failed:      0

Route Performance:
  openrouter:qwen/qwen-2.5-72b-instruct:free
    Attempts: 45 | Verified: 44 | Rate limits: 1 | Latency: 1.2s
  openrouter:meta-llama/llama-3.3-70b-instruct:free
    Attempts: 24 | Verified: 23 | Rate limits: 0 | Latency: 1.8s

3. Continuous Route Evaluation

Benchmark available routes against test datasets to determine which models excel at your specific task:

free-fleet eval customer-triage --input test-samples.csv --id-column id --text-column comment

Output:

========================================================================================
Route Evaluation Benchmark
Task: customer-triage  |  Samples: 20
========================================================================================
Route                                      Success   Grounding   Score    Avg Latency
----------------------------------------------------------------------------------------
openrouter:qwen/qwen-2.5-72b-instruct:free   100.0%     100.0%    0.982          1.15s
openrouter:meta-llama/llama-3.3-70b-free      95.0%      90.0%    0.871          1.82s
opencode:llama3                               80.0%      85.0%    0.742          2.40s

Evaluation benchmarks automatically update route selection priors for subsequent runs.

4. Local Models & Generic OpenAI-Compatible Providers

Run bulk workloads completely locally with Ollama, LM Studio, vLLM, or fast cloud inference providers like Groq and Cerebras:

# Register your local or custom route in the catalog
free-fleet routes add ollama/llama3.2:latest --provider ollama --free

# Or configure environment variables
export OPENAI_COMPATIBLE_BASE_URL="http://localhost:11434/v1"
export OPENAI_COMPATIBLE_API_KEY="ollama"
export OPENAI_COMPATIBLE_MODEL="llama3.2:latest"

# Run with local provider selection
free-fleet run my-task --input data.csv --id-column id --text-column text --provider ollama

Endpoints on localhost or 127.0.0.1 are automatically marked free (cost = 0.0). For third-party cloud OpenAI-compatible endpoints, specify costs explicitly (--input-cost / --output-cost) or leave them as unknown-cost to prevent accidental misclassification.

5. Explicit Data & Privacy Policy

Enforce zero data retention (ZDR), prohibit provider data collection, limit request spend, and control upstream routing on a per-run basis:

free-fleet run my-task \
  --input sensitive-data.jsonl \
  --zdr \
  --no-data-collection \
  --provider openrouter \
  --exclude-provider opencode \
  --openrouter-providers Anthropic,Together \
  --max-request-cost 0.05

You can pass --openrouter-providers as a comma-separated list or as repeatable --openrouter-provider flags.


SQLite Control Plane

free-fleet uses SQLite in WAL mode with BEGIN IMMEDIATE atomic leases. If a worker crashes or a laptop closes, the run can be resumed seamlessly:

free-fleet resume <run_id>
  • Resumable: Batches are committed upon verification. Completed work is never repeated.
  • Fault-Tolerant: Stale worker leases are automatically recovered after timeout.
  • Concurrent: Multiple worker processes can safely lease batches simultaneously without collisions.
  • Auditable: Every attempt, model receipt, cost observation, and verification failure is recorded immutably in inference_attempts.

Commands

Command Purpose
quickstart One-command offline demo (no keys) that writes a verified packet + CSV
setup Bootstrap a portable workspace with bundled skills and SQLite database
doctor Check SQLite, installed CLIs, provider authentication, and available routes
routes List or refresh discovered model routes (--refresh)
routes add Register an explicit custom or local model route (--free, --input-cost)
cooldowns Inspect active rate-limit route cooldowns or clear them (--clear, --route)
tasks List registered task definitions
init Create a typed task from a preset (score, filter, triage, classify, extract, summarize)
init --from-example Infer a draft claims_schema from a labeled CSV (--from-example labels.csv --label-column label)
validate Check task schema and input formatting without inference (--only-ids)
test Run one real batch through candidate models
run Create and execute a SQLite-backed resumable run (--only-ids for compounding filter)
resume Resume an unfinished run from its SQLite queue
status Show real-time progress, attempts, and route stats (--watch, --json)
eval Benchmark routes on sample inputs and update route ranking priors (--concurrency)
sessions Inspect recorded worker sessions and audit logs
export Export a validated packet (--format json|csv|jsonl, --sort-by, --desc, --top, --rank, --filter)
db backup SQLite backup to file (safe while running)
schema Print admitted JSON Schemas or database contracts
mcp install One-command Claude/Cursor setup (auto-wires claude_desktop_config.json / mcp.json)
serve Run the Model Context Protocol (MCP) server over stdio

Pass --json to any command for machine-readable JSON output. --free-only is the explicit zero-cost filter (replaces implicit max-cost=0 sentinel). Long documents are warned when truncated (partial slices).


MCP Server

free-fleet includes a Model Context Protocol (MCP) server for integration into Cursor, Claude Desktop, Antigravity, and other agent environments:

One-command install (recommended for GTM folks):

free-fleet mcp install --workspace-root "$PWD"  # auto-detects Claude/Cursor, writes mcpServers entry
# Preview first
free-fleet mcp install --dry-run --json
free-fleet doctor --workspace-root "$PWD" --json  # verify
# Restart Claude/Cursor to load

Manual entry:

{
  "mcpServers": {
    "free-fleet": {
      "command": "free-fleet",
      "args": ["serve", "--workspace-root", "/absolute/path/to/workspace"]
    }
  }
}

Verification & Testing

Run the test suite:

pytest -q

All core components (Bayesian route scoring, SQLite control plane, rate limit cooldowns, OpenAI-compatible provider, CSV IO, real-time status monitoring, and route evals) are covered by automated unit and integration tests.


License

MIT. See LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

free_fleet-0.2.4-py3-none-any.whl (104.0 kB view details)

Uploaded Python 3

File details

Details for the file free_fleet-0.2.4-py3-none-any.whl.

File metadata

  • Download URL: free_fleet-0.2.4-py3-none-any.whl
  • Upload date:
  • Size: 104.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.3

File hashes

Hashes for free_fleet-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 fe5811cc2f5a7a22506bf6faf2b56cc34c92c90f6f1bdb2eb559ac2975216a1f
MD5 129c5d6a79eb693a5e8b94a35f8ce022
BLAKE2b-256 3f2fcec9d1cd947c3d353688171cd304b26b3d5089d0f55da49c7711275b50aa

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.4 This release

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page