Arcus
A CLI that sits on top of Virginia Tech ARC's LLM API and makes it smarter: it picks which of ARC's four open-weight models to route a request to, checks the response before handing it back to you, and caches answers to questions it's already seen. Runs entirely on your own machine with your own ARC key. Nothing goes through a shared server.
arcus "explain how binary search works"
Why
ARC gives every VT user free access to four open-weight models (gpt-oss-120b, GLM-5.3, Kimi-K3, DeepSeek-V4-Flash) through one OpenAI-compatible endpoint. Picking a model by hand every time is tedious, and a plain HTTP 200 doesn't tell you whether the response inside it was actually any good, a truncated answer or a flat refusal comes back looking the same as a correct one unless something reads the content. Arcus adds three things on top of the raw API:
- Adaptive routing — a multi-armed bandit learns, per kind of question, which model tends to give the best result for the least latency and cost.
- A quality gate — validates every response (truncation, empty output, repetition loops, refusal phrases, schema conformance) before it reaches you, and silently retries with a different model if the first one produced garbage.
- A correctness-aware cache — skips the API call entirely for questions it's answered before, but only when it's actually confident the new question means the same thing as the cached one.
How it works
your question (CLI arg or piped stdin)
|
v
context classifier -- code / reasoning-math / writing / long-document / general
|
v
semantic cache check -- hit? return the cached answer, skip everything below
| miss
v
bandit router -- picks a model, one bandit instance per (task type, length) bucket
|
v
ARC API call (your own key, OpenAI-compatible endpoint)
|
v
quality gate -- validates the response, retries with a different model on failure
| pass
v
answer to you + write to cache + reward logged back to the bandit
Everything after "your question" runs locally. The only network call this tool ever makes is to ARC, with your own key.
Context classification
Regex/keyword rules catch the obvious cases fast (a traceback is
obviously a code question, "write me a poem" is obviously a writing
request). Anything that doesn't match falls back to comparing the
prompt's embedding against a small set of labeled anchor examples per
category, so phrasing the regex rules never thought of still lands in
the right bucket instead of defaulting to "general." See
src/arcus/routing/context.py.
Adaptive routing
Three interchangeable bandit algorithms, picked via config
(bandit_algorithm in ~/.config/arcus/config.toml, default
thompson):
- Epsilon-greedy — simplest baseline, explores randomly a fixed fraction of the time.
- UCB1 — no tunable knob, explores under-tried arms automatically via a confidence bound.
- Thompson sampling — Bayesian, samples from each arm's learned
Betadistribution, the default because it adapts fastest early on.
A random-selection baseline (--random) is also wired in as an A/B
comparison point, mostly useful for the offline evaluation report below.
The reward each arm is updated with is a weighted mix of quality (from
the gate below), normalized latency, and a simulated cost signal built
from real published hosting rates for these same open-weight models
(ARC itself is free, this exists to demonstrate cost-aware routing as a
practice). See src/arcus/routing/bandit.py and
src/arcus/routing/reward.py.
Since every arcus invocation is a fresh process, there's no daemon
holding the bandit's learned state in memory between runs. Instead,
src/arcus/routing/warm_start.py rebuilds it at the start of every call
by replaying the local request log, which works because a bandit's
update() is just an associative accumulation of pull counts and reward
sums.
Quality gate
Five independent checks run over every response: truncation
(finish_reason == "length"), empty output, repetition (trigram
duplication ratio), refusal-phrase matching, and optional Pydantic
schema validation for structured-output requests. Any failure logs a
negative reward for that model in that context and retries with a
different one, up to once per available arm, before giving up and
returning the last attempt. See src/arcus/quality/gate.py.
Semantic cache
Local sentence-transformers embeddings (all-MiniLM-L6-v2), cosine
similarity lookup against everything stored so far. Two things keep it
from just being a naive "similar enough, ship it" cache:
- Volatility classification — a query containing words like "today," "current," or "latest" gets a TTL of zero (never actually served stale), stable conceptual questions get a week.
- Parameter-diff check — before trusting a high-similarity match, numbers and capitalized entities extracted from both queries are compared. "when is project 2 due" and "when is project 3 due" read as almost identical to a cosine similarity score, this check catches that they're different questions.
Measured against a 62-pair labeled benchmark of true paraphrases and
near-duplicate-but-different prompts (src/arcus/cache/benchmark.py):
| approach | precision | recall |
|---|---|---|
| naive cosine similarity | 0.306 | 0.688 |
| + parameter-diff check | 1.000 | 0.625 |
The param-diff check trades some recall (it rejects a few pairs it shouldn't, "World War 1" vs "the First World War" gets flagged as a conflicting parameter, a known and documented limitation) for a real jump in precision, going from roughly 1-in-3 cache hits being wrong to zero false hits in this benchmark.
Offline policy evaluation and regret benchmarking
Every request logs the propensity (the probability the routing policy
assigned to whichever model it picked), which makes it possible to
estimate how a different policy would have performed without ever
running it live, using only the log that already exists. arcus logs
propensity from the very first request, this can't be added
retroactively to old data.
src/arcus/eval/offline.py implements inverse propensity scoring (IPS)
and doubly robust (DR) estimators plus percentile bootstrap confidence
intervals, and evaluate_policies() produces a comparison table:
the logged policy's actual average reward next to estimated values for
any alternative policies you want to compare it against (e.g. "what if
we'd always used the cheapest model").
Regret benchmarking is a different technique: it needs a known
ground-truth reward per arm to measure regret against, which real
traffic can't provide (a real request only ever explores one model per
round, so there's no way to know what the other three would have
scored). src/arcus/eval/regret.py simulates each algorithm against a
labeled synthetic reward environment instead, this is the standard way
to study a bandit algorithm's exploration behavior on its own, separate
from real-world model quality. A sample run (2000 rounds, seed 42):
| algorithm | final cumulative regret |
|---|---|
| epsilon-greedy | 7.9 |
| thompson | 25.4 |
| ucb1 | 58.6 |
| random | 76.9 |
All three real algorithms land well below the random baseline, which is the actual point: they're spending far less time on worse-than-best arms than picking blindly would.
Install
pip install arcus-cli
# or, with uv
uv tool install arcus-cli
Or run from source:
git clone https://github.com/ShakirFarhan/Arcus.git
cd Arcus
uv sync
uv run arcus "explain how binary search works"
First run walks you through a one-time setup: it asks for your ARC key
(get one from llm.arc.vt.edu under User profile > Settings > Account
API keys), makes one live call to check it works, and saves it to
~/.config/arcus/config.tomlwithchmod 600. No separate setup command to remember.
Usage
# ask something directly
arcus "explain how binary search works"
# pipe an error straight in
python broken.py 2>&1 | arcus
# or combine piped context with an explicit instruction
python broken.py 2>&1 | arcus "why is this failing"
# force the random-routing baseline instead of the learned bandit policy
arcus --random "explain how binary search works"
# see how it's doing
arcus stats
# hold a multi-turn conversation instead of a single question
arcus chat
arcus chat opens a REPL that remembers everything said earlier in that
session (resending the growing transcript each turn, since ARC's API has
no session concept of its own) and routes each turn through the same
bandit/quality-gate/logging pipeline as a one-shot arcus "..." call.
Type exit or press ctrl-d to leave. The conversation only lives for
that one run, closing the terminal loses it.
arcus stats reads your local SQLite log and prints a rich-formatted
table: request count, average reward, average latency, and cost score
per model per mode, plus your cache hit rate and how many attempts the
quality gate has caught and retried. Entirely local, no network call.
Status
Everything described above is implemented and working: the ARC adapter, context classification, all three bandit algorithms with propensity tracking, the reward function, the quality gate, the semantic cache and its benchmark, the CLI (ask command, chat mode, first-run wizard, error piping, stats), and the offline evaluation + regret benchmarking layer.
Verified live against a real ARC key: all four models respond correctly
(tests/adapters/test_arc_adapter_live.py), and a full end-to-end
arcus "..." run exercises the whole pipeline (context classification,
cache miss, bandit routing, a real ARC call, the quality gate, logging,
and caching the result) against real traffic. Test suite: 178 passing
with a key set (174 plus 4 live-only tests), 4 skipped without one.
Worth knowing: ARC's models are reasoning models under the hood, they
write to a hidden reasoning field before content, so a small
max_tokens budget can get entirely spent on reasoning before any real
answer comes out. The CLI itself never sets max_tokens, so normal
usage isn't affected, ARC's server-side default leaves plenty of room,
this only matters if you're calling the adapter directly with a tight
budget of your own.
What's still open:
- Not published to PyPI yet.
- Real logged usage is still thin (a handful of manual runs). Once
there's a real query history,
arcus/eval/offline.py'sevaluate_policies()is what turns it into the comparison table described above.
Security & privacy
- Each install uses its own user's ARC key. Keys are never shared, bundled, or sent anywhere but ARC's own endpoint.
- No data leaves your machine by default. Request logs, cache entries, and stats are all local SQLite, nothing is aggregated or reported anywhere.
- This tool hasn't been through ARC's security review for regulated data (FERPA records, health data, etc.) the way ARC's own web interface has. Don't route sensitive regulated data through it.
- MIT licensed, source is fully readable, that's the actual trust mechanism here rather than a policy document.
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 Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file arcus_cli-0.1.0.tar.gz.
File metadata
- Download URL: arcus_cli-0.1.0.tar.gz
- Upload date:
- Size: 108.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d863caa818d38688fbd32e72b98b01694e79e64dfc1a4bc00b19293a15f8a69
|
|
| MD5 |
7975ca378396579720c1d43599494273
|
|
| BLAKE2b-256 |
a37d56739f4e5012eb5c13e8559483b2b7e1bf467b0845ad53afb8b802d80695
|
Provenance
The following attestation bundles were made for arcus_cli-0.1.0.tar.gz:
Publisher:
release.yml on ShakirFarhan/Arcus
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
arcus_cli-0.1.0.tar.gz -
Subject digest:
2d863caa818d38688fbd32e72b98b01694e79e64dfc1a4bc00b19293a15f8a69 - Sigstore transparency entry: 2668001442
- Sigstore integration time:
-
Permalink:
ShakirFarhan/Arcus@d53b73a7ea859a6cdad7d08223c69267452e96ca -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/ShakirFarhan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d53b73a7ea859a6cdad7d08223c69267452e96ca -
Trigger Event:
push
-
Statement type:
File details
Details for the file arcus_cli-0.1.0-py3-none-any.whl.
File metadata
- Download URL: arcus_cli-0.1.0-py3-none-any.whl
- Upload date:
- Size: 38.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36bb0bec62e2090c93f292217a5e775d6b2bd847ee1b2f085a59655575db80cf
|
|
| MD5 |
4b907151e75893951b032e707dda308f
|
|
| BLAKE2b-256 |
d7703d9f219d172d5d6f2e134ae00e2f57400d6bcb0e8e7a46e39ed1d057a60e
|
Provenance
The following attestation bundles were made for arcus_cli-0.1.0-py3-none-any.whl:
Publisher:
release.yml on ShakirFarhan/Arcus
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
arcus_cli-0.1.0-py3-none-any.whl -
Subject digest:
36bb0bec62e2090c93f292217a5e775d6b2bd847ee1b2f085a59655575db80cf - Sigstore transparency entry: 2668001485
- Sigstore integration time:
-
Permalink:
ShakirFarhan/Arcus@d53b73a7ea859a6cdad7d08223c69267452e96ca -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/ShakirFarhan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d53b73a7ea859a6cdad7d08223c69267452e96ca -
Trigger Event:
push
-
Statement type: