Asset Core Docs

Deterministic world-state engine documentation and API references.

Decision Gate docs

assetcore_get_container_continuous_placements_1d

AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. List placements in a continuous 1D container with fixed-point coordinates and span.

Details

AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. List placements in a continuous 1D container with fixed-point coordinates and span.
nCalls /v1/read/namespaces/{namespace_id}/containers/:id/continuous_1d/placements with optional region filters (min_x,max_x). Response includes placements[] {inst_id, coord {x}, span {length}}, continuous metadata {min_x,max_x,quantization_inv,bucket_cell_size?,placement_count}, optional region echo, freshness, and correlation identifiers.

Protocols

  • MCP
  • OpenAI
  • Gemini

Input Schema

{
  "properties": {
    "container_id": {
      "description": "Container identifier.",
      "maxLength": 128,
      "minLength": 1,
      "pattern": "^[A-Za-z0-9._~\\-]+$",
      "type": "string"
    },
    "max_x": {
      "description": "Optional inclusive maximum X bound (fixed-point).",
      "type": "integer"
    },
    "min_x": {
      "description": "Optional inclusive minimum X bound (fixed-point).",
      "type": "integer"
    },
    "namespace_id": {
      "description": "Required namespace identifier for all namespaced operations.",
      "minimum": 1,
      "type": "integer"
    }
  },
  "required": [
    "container_id",
    "namespace_id"
  ],
  "type": "object"
}

Examples

No examples are currently available for this tool.