Operations
Every operation on MARC.
The full operation table for MARC. Each entry is dispatched through MapEngine::handle_request and matched on operation inside the protocols/marc-lib crate.
Index
| Operation | Summary |
|---|---|
reasoning_task | Submit a bounded reasoning task. Returns a derivation tree with citations and confidence band. |
publish_model | Register a reasoning model artifact in MARS under the calling org. |
share_model | Share a published model with another org under a MOAT treaty. |
causal_analysis | Compute P(Y |
Reference
reasoning_task
Submit a bounded reasoning task. Returns a derivation tree with citations and confidence band.
| Field | Value |
|---|---|
| Capability | map.marc.reasoning_task |
| Idempotent | No — supply Idempotency-Key for safe retries |
{
"intent": "demo reasoning task",
"budget": {
"tokens": 4096,
"deadline_ms": 8000
}
}Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.
publish_model
Register a reasoning model artifact in MARS under the calling org.
| Field | Value |
|---|---|
| Capability | map.marc.publish_model |
| Idempotent | No — supply Idempotency-Key for safe retries |
{
"example": true
}Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.
share_model
Share a published model with another org under a MOAT treaty.
| Field | Value |
|---|---|
| Capability | map.marc.share_model |
| Idempotent | No — supply Idempotency-Key for safe retries |
{
"example": true
}Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.
causal_analysis
Compute P(Y | do(X)) over a Bayesian world-model snapshot from MIND.
| Field | Value |
|---|---|
| Capability | map.marc.causal_analysis |
| Idempotent | No — supply Idempotency-Key for safe retries |
{
"example": true
}Dispatched through the standard pipeline; see Engine pipeline for the 8 stages.