Files
docs/hexa/mcp/modules/hexa.model.json
Vishesh 'ironeagle' Bangotra a32eeaf2b4 feat: serve docs flat at /<repo>/ with no redirects
- collect.py copies each repo's built site contents directly to a
  top-level <repo>/ dir (was libs|apis|wiki/<repo>/site nesting)
- nginx uses `index index.html lib/index.html api/index.html` so
  /dagpipe/ -> lib/index.html, /auth-server/ -> api/index.html are
  served internally with no redirects
- _index regenerates links against the flat layout
  (/dagpipe/lib/, /auth-server/api/, /mongo-ops/, /blog/...)
- config.yml static entries point at vendored blog/ + media-manager/
- Dockerfile copies per-repo dirs flat into the nginx html root
- removed stale libs/, apis/, wiki/, tutorials/ category trees
2026-09-11 21:32:30 +05:30

146 lines
5.6 KiB
JSON

{
"module": "hexa.model",
"content": {
"path": "hexa.model",
"docstring": "Shared neutral model for hexa port trees.\n\nAll utilities (``parse_yaml``, ``generate_abc``, ``parse_abc``,\n``generate_yaml``, ``check_matches``) serialize through this single model.\nIt is NOT tied to any sample — any port tree fits.",
"objects": {
"annotations": {
"name": "annotations",
"kind": "alias",
"path": "hexa.model.annotations",
"signature": "<bound method Alias.signature of Alias('annotations', '__future__.annotations')>",
"docstring": null
},
"dataclass": {
"name": "dataclass",
"kind": "alias",
"path": "hexa.model.dataclass",
"signature": "<bound method Alias.signature of Alias('dataclass', 'dataclasses.dataclass')>",
"docstring": null
},
"field": {
"name": "field",
"kind": "alias",
"path": "hexa.model.field",
"signature": "<bound method Alias.signature of Alias('field', 'dataclasses.field')>",
"docstring": null
},
"NestedConfig": {
"name": "NestedConfig",
"kind": "attribute",
"path": "hexa.model.NestedConfig",
"signature": null,
"docstring": null
},
"ConfigValue": {
"name": "ConfigValue",
"kind": "attribute",
"path": "hexa.model.ConfigValue",
"signature": null,
"docstring": null
},
"MethodSpec": {
"name": "MethodSpec",
"kind": "class",
"path": "hexa.model.MethodSpec",
"signature": "<bound method Class.signature of Class('MethodSpec', 19, 34)>",
"docstring": "Specification of a single abstract method.",
"members": {
"name": {
"name": "name",
"kind": "attribute",
"path": "hexa.model.MethodSpec.name",
"signature": null,
"docstring": null
},
"args": {
"name": "args",
"kind": "attribute",
"path": "hexa.model.MethodSpec.args",
"signature": null,
"docstring": null
},
"kwargs": {
"name": "kwargs",
"kind": "attribute",
"path": "hexa.model.MethodSpec.kwargs",
"signature": null,
"docstring": null
}
}
},
"PortNode": {
"name": "PortNode",
"kind": "class",
"path": "hexa.model.PortNode",
"signature": "<bound method Class.signature of Class('PortNode', 37, 149)>",
"docstring": "A node in the hexa port tree.\n\nParameters\n----------\nname : str\n Slot name, e.g. ``\"parser\"``, ``\"amount_balance\"``.\nkind : str\n One of ``\"leaf\"``, ``\"port\"``, or ``\"parent\"``.\n - ``\"leaf\"``: no children (e.g. ``NumberPort``)\n - ``\"port\"``: has children (e.g. ``TransactionParserPort``)\n - ``\"parent\"``: the root of the tree (e.g. ``ExtractionPipeline``)\nport_cls : str\n ABC class name that gives this port its shape, e.g.\n ``\"TransactionParserPort\"``. Every port has a concrete typed shape.\nattributes : dict[str, ConfigValue]\n Annotated attributes: ``name -> type_expr`` for scalars, or a nested\n ``dict`` of sub-attributes (a struct) for grouped/structured values.\nchildren : list[PortNode]\n Nested port slots.\nmethods : dict[str, MethodSpec]\n Abstract methods keyed by method name.",
"members": {
"name": {
"name": "name",
"kind": "attribute",
"path": "hexa.model.PortNode.name",
"signature": null,
"docstring": null
},
"port_cls": {
"name": "port_cls",
"kind": "attribute",
"path": "hexa.model.PortNode.port_cls",
"signature": null,
"docstring": null
},
"kind": {
"name": "kind",
"kind": "attribute",
"path": "hexa.model.PortNode.kind",
"signature": null,
"docstring": null
},
"attributes": {
"name": "attributes",
"kind": "attribute",
"path": "hexa.model.PortNode.attributes",
"signature": null,
"docstring": null
},
"children": {
"name": "children",
"kind": "attribute",
"path": "hexa.model.PortNode.children",
"signature": null,
"docstring": null
},
"methods": {
"name": "methods",
"kind": "attribute",
"path": "hexa.model.PortNode.methods",
"signature": null,
"docstring": null
},
"find": {
"name": "find",
"kind": "function",
"path": "hexa.model.PortNode.find",
"signature": "<bound method Function.signature of Function('find', 73, 78)>",
"docstring": "Find a direct child by slot name."
},
"walk": {
"name": "walk",
"kind": "function",
"path": "hexa.model.PortNode.walk",
"signature": "<bound method Function.signature of Function('walk', 80, 85)>",
"docstring": "Return all nodes in depth-first order (self first)."
},
"diff": {
"name": "diff",
"kind": "function",
"path": "hexa.model.PortNode.diff",
"signature": "<bound method Function.signature of Function('diff', 103, 149)>",
"docstring": "Return a list of human-readable difference strings.\n\nAn empty list means the trees are equal."
}
}
}
}
}
}