Products

FineForge

Turn drift signal into a fine-tune or prompt/adapter job you can ship. FineForge owns eval gates, canary promote, rollback, and atomic prompt+adapter+route bundles.

When to use

  • DriftWatch opened an alert and you need a versioned fix
  • Cheap SLM needs distillation from a teacher
  • Tool schema broke and adapters + fixtures must ship together

Job kinds

KindArtifactGate
prompt_patchprompt_versionGolden pass rate
adapter_fixtool_schema_version + fixturesContract tests
teacher_critiqueRepair suggestions → patchJudge agreement
lora_trainowned model revisionEval + cost gap accept
bundleprompt + adapter + route rulesAtomic promote
eval_expandNew cases from incidentsCoverage↑

Promote path

1. Job from DriftWatch alert or schedule
2. Scrub dataset (PII block — F11)
3. Eval harness (CI gate — F06)
4. Shadow / canary 1–5% (F14)
5. Full promote + deploy marker (F15)
6. On miss: rollback to previous revision (F02)
  • Metrics: fineforge.jobs.*, canary score, eval pass rate
  • Register new model_id (*-vN) in the model registry before RouteIQ points traffic
  • Postmortem → eval case (F24) so the failure never returns silently

Operator failure modes

IDProblemNext action
F02Bad prompt deployInstant previous version
F07Noisy LLM-as-judgeRubric + few-shot; freeze
F11PII in train setBlock train until scrubbed
F12Noisy prod tracesMinHash + score filter
F14Canary unclearHold until delta > ε
F16Partial bundle shipAtomic multi-artifact only
F20Distill quality gapAccept gap for cost; document
F23Optimize $ without qualityQuality-weighted cost objective

API

POST /v1/fineforge/jobs
POST /v1/fineforge/jobs/{id}/promote
POST /v1/fineforge/jobs/{id}/rollback

See API reference and Drift & retrain.

Fits the loop

FineForge closes observe → route → drift → retrain. Owned models (guide) are clients of Inferix — FineForge promotes revisions; RouteIQ selects them.

Source

https://github.com/AkshantVats/fineforge

Operator and agent playbooks.

Guides →