Machina Agent is a Clertree fine-tuned adapter for machine-intelligence
workflows. It is trained to route natural-language maintenance and operations
questions to Machina MCP tools for fault diagnosis, remaining useful life,
energy analytics, process quality, asset state, and maintenance knowledge.
This repository contains a PEFT LoRA adapter, not a standalone foundation
model. Load it over mistralai/Mistral-7B-Instruct-v0.3.
The training examples teach tool selection and Clertree response style. Runtime
facts must still come from telemetry, registered model plugins, maintenance
knowledge, and MCP tool results.
1from machina_harness.agent import generate_agent_turn, load_agent
2
3tokenizer, model = load_agent(adapter="clerktree/machina-agent-mistral-7b-lora")
4response = generate_agent_turn("which model plugins are installed?", tokenizer, model)
5print(response.text)
6print(response.tool_calls)
Machina is decision support for engineers and operators. It is not a safety
controller. Validate outputs against site procedures, calibrated sensors, and
qualified human inspection before maintenance action.