Replace repository with DuckLM runtime

This commit is contained in:
2026-05-20 01:00:28 +08:00
parent ddc285b8f4
commit 4a84ada770
190 changed files with 7060 additions and 13602 deletions
@@ -0,0 +1,55 @@
{
"type": "object",
"required": ["kind", "intent", "risk_level", "actions"],
"additionalProperties": false,
"properties": {
"kind": {
"type": "string",
"enum": ["action_directive"]
},
"intent": {
"type": "string",
"minLength": 1
},
"risk_level": {
"type": "string",
"enum": ["none", "low", "medium", "high", "critical"]
},
"actions": {
"type": "array",
"minItems": 0,
"items": {
"type": "object",
"required": ["tool", "args"],
"additionalProperties": false,
"properties": {
"tool": {
"type": "string",
"minLength": 1
},
"args": {
"type": "object"
},
"reason": {
"type": "string"
}
}
}
},
"memory_hints": {
"type": "array",
"items": {
"type": "string"
}
},
"expected_observations": {
"type": "array",
"items": {
"type": "string"
}
},
"stop_reason": {
"type": "string"
}
}
}