Documentation Index
Fetch the complete documentation index at: https://guardiandocs.korymsmith.dev/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Returns detailed information about all models including versions and load status.
Request
No parameters required.
Request Example
curl http://localhost:8000/v1/models
Response
Success Response (200)
{
"models": [
{
"name": "Sexism Classifier (LASSO)",
"version": "sexism_lasso_v1",
"loaded": true,
"description": "Custom LASSO model trained on ~40k sexist/non-sexist tweets"
},
{
"name": "Toxicity Transformer",
"version": "toxic_roberta_v1",
"loaded": true,
"description": "HuggingFace transformer model for multi-label toxicity detection"
},
{
"name": "Rule-Based Engine",
"version": "rules_v1",
"loaded": true,
"description": "Heuristics engine for slur detection, threats, self-harm, and profanity"
}
]
}
Use Cases
- Verify all models are loaded before processing
- Display model information in admin dashboards
- Track model versions for auditing