32 lines
799 B
JSON
32 lines
799 B
JSON
{
|
|
"schema_version": 1,
|
|
"catalogue_version": "2026.07.1",
|
|
"recipes": [
|
|
{
|
|
"id": "baseline",
|
|
"version": "1",
|
|
"backend_id": "torch-transformers",
|
|
"description": "Backend defaults with no execution overrides.",
|
|
"params": {}
|
|
},
|
|
{
|
|
"id": "eager-attention",
|
|
"version": "1",
|
|
"backend_id": "torch-transformers",
|
|
"description": "Force the reference attention path instead of the backend's autoselected one.",
|
|
"params": {
|
|
"attn_implementation": "eager"
|
|
}
|
|
},
|
|
{
|
|
"id": "stateless",
|
|
"version": "1",
|
|
"backend_id": "torch-transformers",
|
|
"description": "Disable the incremental state cache; every step re-runs the full prefill.",
|
|
"params": {
|
|
"use_cache": false
|
|
}
|
|
}
|
|
]
|
|
}
|