YosepMulia's picture
Add instruction execution router model
e71a337 verified
---
language:
- en
- id
license: mit
tags:
- humanoid
- instruction-routing
- pre-execution
- decision-making
- reasoning
- llm
---
# instruction-execution-router
## Model Description
`instruction-execution-router` is a language model designed to route natural language instructions before execution.
Instead of executing instructions, the model analyzes them and determines whether they are ready for execution, require clarification, contain contradictions, are incomplete, or should be blocked due to safety concerns. It is intended to support modular humanoid and agent architectures.
## Intended Use
- Instruction routing in humanoid systems
- Decision-making before task planning
- AI agent execution pipelines
- Safety-aware control layers
## Output Format
The model outputs **JSON only**:
```json
{
"label": "VALID | AMBIGUOUS | CONTRADICTORY | INCOMPLETE | UNSAFE",
"confidence": 0.0
}