AI-SETT: A diagnostic assessment framework for AI models. Not a benchmark -- a tool to identify what models need. 600 observable criteria across 13 categories. Grounded in instructional design (SETT, Cognitive Load Theory, ZPD).
5
stars
18
commits
Python
primary language
Jan 30, 2026
updated
Author: CrewRelay Repository: https://github.com/crewrelay/AI-SETT
Not a benchmark. A diagnostic.
AI-SETT adapts the SETT framework (Student, Environment, Tasks, Tools) from special education assessment to AI model evaluation. Instead of ranking models against each other, it profiles individual models to identify what they need.
"When a measure becomes a target, it ceases to be a good measure."
This framework will fail the moment it becomes a leaderboard.
AI-SETT is diagnostic, not competitive. The moment someone says "our model scored 547/577," we've lost. The count isn't the point. The profile is the point. What behaviors are present? What's missing? What does this model need?
Do not:
Do:
See full Goodhart's Law section in AI-SETT-FRAMEWORK.md.
| Traditional benchmarks | AI-SETT |
|---|---|
| Ranks models against each other | Profiles individual model's shape |
| Single score or percentage | 577 observable criteria across 12 categories |
| Assumes ideal exists | No ceiling — just count demonstrated behaviors |
| Pass/fail mentality | Demonstrated (+1) or gap (+0) |
| Tells you "how good" | Tells you what's present and what's missing |
| One-time evaluation | Iterative: assess → train → reassess |
| Comes from ML | Grounded in instructional design |
Student — What can this model do? Where are the gaps? Environment — What context will it operate in? Tasks — What must it accomplish? Tools — What interventions will help?
12 categories, 577 criteria, 953 probes
Categories are organized into two tiers:
| Category | Criteria |
|---|---|
| Understanding | 25 |
| Calibration | 30 |
| Reasoning | 48 |
| Boundaries | 40 |
| Knowledge | 120 |
| Generation | 65 |
--tier all)| Category | Criteria |
|---|---|
| Interaction | 24 |
| Tool Use | 56 |
| Emotional Intelligence | 32 |
| Metacognition | 24 |
| Learning | 40 |
| Pedagogy | 72 |
Additive. No ceiling. No normalization.
Each criterion is binary:
Total = sum of demonstrated behaviors.
The count isn't a grade. It's a profile. Higher count = more demonstrated behaviors. The +0 list tells you exactly what to train.
Not all 577 criteria apply to every use case. Choose what matters.
For each criterion, present input that would elicit the behavior.
Check response against criterion. +1 if demonstrated, +0 if not. Record evidence.
Run the assessment runner against any OpenAI-compatible API:
export OPENAI_API_KEY=not-needed
python3 -m tools.assessment_runner \
--probes probes \
--provider openai \
--model your-model-name \
--base-url http://localhost:11434/v1 \
--temperature 0.0 \
--concurrency 2 \
--tier all \
--output results/assessment.json \
--verbose
Use --tier base for base categories only, or --tier all for all 12 categories.
AI-SETT includes tools for generating and managing training data:
See training_data/ for the full dataset and tools.
For comprehensive evaluation:
1. Domain assessments (Knowledge, Reasoning, etc.)
↓
2. Capability assessments (Understanding, Calibration, etc.)
↓
3. Learning assessment (teach it something, see what sticks)
↓
4. Pedagogy assessment (have it teach, evaluate quality)
↓
5. Gap analysis and intervention planning
↓
6. Targeted training on identified gaps
↓
7. Reassessment
AI-SETT-FRAMEWORK.md — Complete framework with all 577 criteriaREADME.md — This fileprobes/ — 953 probes across all 12 categoriestools/ — Assessment runner, validator, domain buildertraining_data/ — 3,415 synthetic training examplesModelfile.aisett — Ollama Modelfile for NEMOclaude AI-SETT modelrun_aisett_eval.sh — Full assessment runner scriptAI-SETT emerged from applying instructional design principles to LLM fine-tuning. The question changed from "how does this model score?" to "what does this model need?"
Grounded in:
MIT. Use freely, attribution appreciated.
@misc{ai-sett-2025,
title={AI-SETT: A Diagnostic Assessment Framework for AI Models},
author={CrewRelay},
year={2025},
url={https://github.com/crewrelay/AI-SETT}
}
This framework is extensible by design. Contributions welcome:
See CONTRIBUTING.md for guidelines.
AI-SETT treats AI models the way good instructors treat students: meet them where they are, identify what they need, train the gaps.
18 commits
Python
98.3%
AI-SETT: A diagnostic assessment framework for AI models. Not a benchmark -- a tool to identify what models need. 600 observable criteria across 13 categories. Grounded in instructional design (SETT, Cognitive Load Theory, ZPD).
5
stars
18
commits
Python
primary language
Jan 30, 2026
updated
Author: CrewRelay Repository: https://github.com/crewrelay/AI-SETT
Not a benchmark. A diagnostic.
AI-SETT adapts the SETT framework (Student, Environment, Tasks, Tools) from special education assessment to AI model evaluation. Instead of ranking models against each other, it profiles individual models to identify what they need.
"When a measure becomes a target, it ceases to be a good measure."
This framework will fail the moment it becomes a leaderboard.
AI-SETT is diagnostic, not competitive. The moment someone says "our model scored 547/577," we've lost. The count isn't the point. The profile is the point. What behaviors are present? What's missing? What does this model need?
Do not:
Do:
See full Goodhart's Law section in AI-SETT-FRAMEWORK.md.
| Traditional benchmarks | AI-SETT |
|---|---|
| Ranks models against each other | Profiles individual model's shape |
| Single score or percentage | 577 observable criteria across 12 categories |
| Assumes ideal exists | No ceiling — just count demonstrated behaviors |
| Pass/fail mentality | Demonstrated (+1) or gap (+0) |
| Tells you "how good" | Tells you what's present and what's missing |
| One-time evaluation | Iterative: assess → train → reassess |
| Comes from ML | Grounded in instructional design |
Student — What can this model do? Where are the gaps? Environment — What context will it operate in? Tasks — What must it accomplish? Tools — What interventions will help?
12 categories, 577 criteria, 953 probes
Categories are organized into two tiers:
| Category | Criteria |
|---|---|
| Understanding | 25 |
| Calibration | 30 |
| Reasoning | 48 |
| Boundaries | 40 |
| Knowledge | 120 |
| Generation | 65 |
--tier all)| Category | Criteria |
|---|---|
| Interaction | 24 |
| Tool Use | 56 |
| Emotional Intelligence | 32 |
| Metacognition | 24 |
| Learning | 40 |
| Pedagogy | 72 |
Additive. No ceiling. No normalization.
Each criterion is binary:
Total = sum of demonstrated behaviors.
The count isn't a grade. It's a profile. Higher count = more demonstrated behaviors. The +0 list tells you exactly what to train.
Not all 577 criteria apply to every use case. Choose what matters.
For each criterion, present input that would elicit the behavior.
Check response against criterion. +1 if demonstrated, +0 if not. Record evidence.
Run the assessment runner against any OpenAI-compatible API:
export OPENAI_API_KEY=not-needed
python3 -m tools.assessment_runner \
--probes probes \
--provider openai \
--model your-model-name \
--base-url http://localhost:11434/v1 \
--temperature 0.0 \
--concurrency 2 \
--tier all \
--output results/assessment.json \
--verbose
Use --tier base for base categories only, or --tier all for all 12 categories.
AI-SETT includes tools for generating and managing training data:
See training_data/ for the full dataset and tools.
For comprehensive evaluation:
1. Domain assessments (Knowledge, Reasoning, etc.)
↓
2. Capability assessments (Understanding, Calibration, etc.)
↓
3. Learning assessment (teach it something, see what sticks)
↓
4. Pedagogy assessment (have it teach, evaluate quality)
↓
5. Gap analysis and intervention planning
↓
6. Targeted training on identified gaps
↓
7. Reassessment
AI-SETT-FRAMEWORK.md — Complete framework with all 577 criteriaREADME.md — This fileprobes/ — 953 probes across all 12 categoriestools/ — Assessment runner, validator, domain buildertraining_data/ — 3,415 synthetic training examplesModelfile.aisett — Ollama Modelfile for NEMOclaude AI-SETT modelrun_aisett_eval.sh — Full assessment runner scriptAI-SETT emerged from applying instructional design principles to LLM fine-tuning. The question changed from "how does this model score?" to "what does this model need?"
Grounded in:
MIT. Use freely, attribution appreciated.
@misc{ai-sett-2025,
title={AI-SETT: A Diagnostic Assessment Framework for AI Models},
author={CrewRelay},
year={2025},
url={https://github.com/crewrelay/AI-SETT}
}
This framework is extensible by design. Contributions welcome:
See CONTRIBUTING.md for guidelines.
AI-SETT treats AI models the way good instructors treat students: meet them where they are, identify what they need, train the gaps.
18 commits
Python
98.3%