Files
neuron-tai/packages/node/meshnet_node/recipes.json
Dobromir Popov 7d259d7c9b test grouping
2026-07-11 22:11:21 +03:00

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
}
}
]
}