AbteeXAILabs commited on
Commit
63ba471
·
verified ·
1 Parent(s): 93bf717

Publish hardened LumynaX product package

Browse files
Files changed (48) hide show
  1. README.md +17 -1
  2. SMOKE_TESTS.md +1 -0
  3. integrations/opencode-provider.json +28 -0
  4. marama_route/__init__.py +2 -0
  5. marama_route/_ui_server.py +115 -0
  6. marama_route/cli.py +23 -0
  7. marama_route/configs/default_policy.yaml +26 -0
  8. marama_route/configs/lumynax_model_registry.json +3251 -0
  9. marama_route/configs/provider_aliases.yaml +30 -0
  10. marama_route/configs/routing_policy.yaml +20 -0
  11. marama_route/examples/capsule.personal-sovereignty-profile.json +45 -0
  12. marama_route/examples/capsule.restricted-nz-code.json +28 -0
  13. marama_route/examples/opencode.marama-route.json +28 -0
  14. marama_route/examples/request.allowed-local-edit.json +15 -0
  15. marama_route/examples/request.code-restricted.json +14 -0
  16. marama_route/examples/request.denied-training.json +15 -0
  17. marama_route/examples/request.openai-chat-code.json +44 -0
  18. marama_route/examples/request.personal-memory-read.json +19 -0
  19. marama_route/integrations/opencode-compatible-provider.md +96 -0
  20. marama_route/integrations/opencode-provider.json +28 -0
  21. marama_route/schemas/data_capsule.schema.json +88 -0
  22. marama_route/schemas/openai_chat_route_request.schema.json +95 -0
  23. marama_route/ui.py +400 -0
  24. product_manifest.json +4 -2
  25. pyproject.toml +10 -1
  26. quickstart.py +4 -0
  27. schemas/openai_chat_route_request.schema.json +95 -0
  28. sovereigncode/__init__.py +2 -0
  29. sovereigncode/_ui_server.py +115 -0
  30. sovereigncode/cli.py +29 -0
  31. sovereigncode/configs/default_policy.yaml +26 -0
  32. sovereigncode/configs/lumynax_model_registry.json +3251 -0
  33. sovereigncode/configs/provider_aliases.yaml +30 -0
  34. sovereigncode/configs/routing_policy.yaml +20 -0
  35. sovereigncode/examples/capsule.personal-sovereignty-profile.json +45 -0
  36. sovereigncode/examples/capsule.restricted-nz-code.json +28 -0
  37. sovereigncode/examples/opencode.marama-route.json +28 -0
  38. sovereigncode/examples/request.allowed-local-edit.json +15 -0
  39. sovereigncode/examples/request.code-restricted.json +14 -0
  40. sovereigncode/examples/request.denied-training.json +15 -0
  41. sovereigncode/examples/request.openai-chat-code.json +44 -0
  42. sovereigncode/examples/request.personal-memory-read.json +19 -0
  43. sovereigncode/integrations/opencode-compatible-provider.md +96 -0
  44. sovereigncode/integrations/opencode-provider.json +28 -0
  45. sovereigncode/policy-packs/nz-personal-sovereignty.yaml +59 -0
  46. sovereigncode/schemas/data_capsule.schema.json +88 -0
  47. sovereigncode/schemas/openai_chat_route_request.schema.json +95 -0
  48. sovereigncode/ui.py +566 -0
README.md CHANGED
@@ -37,6 +37,8 @@ python quickstart.py
37
  ```bash
38
  python -m sovereigncode.cli evaluate --capsule examples/capsule.restricted-nz-code.json --request examples/request.allowed-local-edit.json
39
  python -m sovereigncode.cli plan-turn --capsule examples/capsule.restricted-nz-code.json --request examples/request.allowed-local-edit.json --route-request examples/request.code-restricted.json --registry configs/lumynax_model_registry.json
 
 
40
  ```
41
 
42
  # AbteeX SovereignCode
@@ -67,6 +69,7 @@ The initial product scaffold includes:
67
  - Personal-detail consent checks for anonymous, pseudonymous, identifiable, and sensitive identifiable contexts.
68
  - A CLI evaluator for governed code/data requests.
69
  - A governed coding-turn planner that combines policy, audit, tool grants, and MaramaRoute model selection.
 
70
  - Audit-record generation with stable request hashes.
71
  - Product architecture and launch roadmap.
72
  - Example capsules for restricted New Zealand source-code work.
@@ -103,6 +106,18 @@ py -3 -m tinyluminax.products.sovereigncode.cli evaluate \
103
  --allow-denied-exit-zero
104
  ```
105
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  ## Product Modules
107
 
108
  | Module | Purpose |
@@ -135,6 +150,7 @@ py -3 -m tinyluminax.products.sovereigncode.cli evaluate \
135
  | OpenCode provider example | `examples/opencode.marama-route.json` |
136
  | Personal profile capsule | `examples/capsule.personal-sovereignty-profile.json` |
137
  | Personal-memory request | `examples/request.personal-memory-read.json` |
 
138
  | Product blueprint | `product_blueprint.md` |
139
 
140
  ## Source Grounding
@@ -143,7 +159,7 @@ The sovereignty model is inspired by the Data Capsule pattern described in the S
143
 
144
  ## Stage
145
 
146
- This is a product scaffold, not the final commercial application. The policy engine and router integration are executable now; the terminal UI, tool broker, and full agent loop are the next implementation stage.
147
 
148
 
149
  # AbteeX SovereignCode Product Blueprint
 
37
  ```bash
38
  python -m sovereigncode.cli evaluate --capsule examples/capsule.restricted-nz-code.json --request examples/request.allowed-local-edit.json
39
  python -m sovereigncode.cli plan-turn --capsule examples/capsule.restricted-nz-code.json --request examples/request.allowed-local-edit.json --route-request examples/request.code-restricted.json --registry configs/lumynax_model_registry.json
40
+ python -m sovereigncode.cli ui --smoke
41
+ python -m sovereigncode.cli ui --port 8788 --open
42
  ```
43
 
44
  # AbteeX SovereignCode
 
69
  - Personal-detail consent checks for anonymous, pseudonymous, identifiable, and sensitive identifiable contexts.
70
  - A CLI evaluator for governed code/data requests.
71
  - A governed coding-turn planner that combines policy, audit, tool grants, and MaramaRoute model selection.
72
+ - A dependency-free browser operator console for policy evaluation and coding-turn planning.
73
  - Audit-record generation with stable request hashes.
74
  - Product architecture and launch roadmap.
75
  - Example capsules for restricted New Zealand source-code work.
 
106
  --allow-denied-exit-zero
107
  ```
108
 
109
+ Run the browser operator console:
110
+
111
+ ```bash
112
+ py -3 -m tinyluminax.products.sovereigncode.cli ui --port 8788 --open
113
+ ```
114
+
115
+ Smoke-check the UI routes without opening a browser:
116
+
117
+ ```bash
118
+ py -3 -m tinyluminax.products.sovereigncode.cli ui --smoke
119
+ ```
120
+
121
  ## Product Modules
122
 
123
  | Module | Purpose |
 
150
  | OpenCode provider example | `examples/opencode.marama-route.json` |
151
  | Personal profile capsule | `examples/capsule.personal-sovereignty-profile.json` |
152
  | Personal-memory request | `examples/request.personal-memory-read.json` |
153
+ | Browser operator console | `python -m tinyluminax.products.sovereigncode.cli ui` |
154
  | Product blueprint | `product_blueprint.md` |
155
 
156
  ## Source Grounding
 
159
 
160
  ## Stage
161
 
162
+ This is an executable platform scaffold, not the final commercial application. The policy engine, router integration, CLI package, and browser operator console are working now; the tool broker, terminal loop, and full autonomous agent loop are the next implementation stage.
163
 
164
 
165
  # AbteeX SovereignCode Product Blueprint
SMOKE_TESTS.md CHANGED
@@ -5,6 +5,7 @@ Run from the package root:
5
  ```bash
6
  pip install -e .
7
  python quickstart.py
 
8
  python -m sovereigncode.cli evaluate --capsule examples/capsule.personal-sovereignty-profile.json --request examples/request.personal-memory-read.json
9
  ```
10
 
 
5
  ```bash
6
  pip install -e .
7
  python quickstart.py
8
+ python -m sovereigncode.cli ui --smoke
9
  python -m sovereigncode.cli evaluate --capsule examples/capsule.personal-sovereignty-profile.json --request examples/request.personal-memory-read.json
10
  ```
11
 
integrations/opencode-provider.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "provider": {
4
+ "abteex-marama": {
5
+ "npm": "@ai-sdk/openai-compatible",
6
+ "name": "AbteeX MaramaRoute",
7
+ "options": {
8
+ "baseURL": "http://127.0.0.1:8787/v1",
9
+ "apiKey": "{env:ABTEEX_MARAMA_API_KEY}",
10
+ "headers": {
11
+ "X-AbteeX-Route-Jurisdiction": "NZ",
12
+ "X-AbteeX-Route-Sensitivity": "restricted"
13
+ }
14
+ },
15
+ "models": {
16
+ "lumynax/auto": {
17
+ "name": "LumynaX Auto"
18
+ },
19
+ "lumynax/code": {
20
+ "name": "LumynaX Code"
21
+ },
22
+ "lumynax/local": {
23
+ "name": "LumynaX Local"
24
+ }
25
+ }
26
+ }
27
+ }
28
+ }
marama_route/__init__.py CHANGED
@@ -8,6 +8,7 @@ from .gateway import (
8
  )
9
  from .registry import ModelEndpoint, RoutingRequest, load_model_registry
10
  from .router import RouteDecision, SovereignModelRouter
 
11
 
12
  __all__ = [
13
  "ModelEndpoint",
@@ -19,4 +20,5 @@ __all__ = [
19
  "load_model_registry",
20
  "route_chat_payload",
21
  "routing_request_from_chat_payload",
 
22
  ]
 
8
  )
9
  from .registry import ModelEndpoint, RoutingRequest, load_model_registry
10
  from .router import RouteDecision, SovereignModelRouter
11
+ from .ui import smoke_ui as smoke_ui
12
 
13
  __all__ = [
14
  "ModelEndpoint",
 
20
  "load_model_registry",
21
  "route_chat_payload",
22
  "routing_request_from_chat_payload",
23
+ "smoke_ui",
24
  ]
marama_route/_ui_server.py ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from __future__ import annotations
2
+
3
+ import json
4
+ import socket
5
+ import webbrowser
6
+ from collections.abc import Callable
7
+ from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer
8
+ from typing import Any
9
+ from urllib.parse import urlparse
10
+
11
+ ApiHandler = Callable[[str, str, dict[str, Any] | None], tuple[int, dict[str, Any]]]
12
+
13
+
14
+ def find_available_port(host: str, preferred_port: int, *, attempts: int = 50) -> int:
15
+ start = preferred_port if preferred_port > 0 else 0
16
+ if start == 0:
17
+ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as probe:
18
+ probe.bind((host, 0))
19
+ return int(probe.getsockname()[1])
20
+
21
+ for port in range(start, start + attempts):
22
+ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as probe:
23
+ probe.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
24
+ try:
25
+ probe.bind((host, port))
26
+ except OSError:
27
+ continue
28
+ return port
29
+ raise OSError(f"No available port found from {preferred_port} to {preferred_port + attempts - 1}")
30
+
31
+
32
+ def serve_dashboard(
33
+ *,
34
+ product_name: str,
35
+ html: str,
36
+ api_handler: ApiHandler,
37
+ host: str,
38
+ port: int,
39
+ open_browser: bool = False,
40
+ ) -> int:
41
+ actual_port = find_available_port(host, port)
42
+
43
+ class Handler(BaseHTTPRequestHandler):
44
+ server_version = "AbteeXProductUI/0.1"
45
+
46
+ def do_GET(self) -> None: # noqa: N802 - stdlib handler method name
47
+ path = urlparse(self.path).path
48
+ if path == "/":
49
+ self._send_text(200, html, "text/html; charset=utf-8")
50
+ return
51
+ if path.startswith("/api/"):
52
+ self._send_api("GET", path, None)
53
+ return
54
+ self._send_json(404, {"ok": False, "error": "not_found"})
55
+
56
+ def do_POST(self) -> None: # noqa: N802 - stdlib handler method name
57
+ path = urlparse(self.path).path
58
+ if not path.startswith("/api/"):
59
+ self._send_json(404, {"ok": False, "error": "not_found"})
60
+ return
61
+ try:
62
+ length = int(self.headers.get("Content-Length", "0"))
63
+ raw = self.rfile.read(length).decode("utf-8") if length else "{}"
64
+ payload = json.loads(raw)
65
+ if not isinstance(payload, dict):
66
+ raise ValueError("JSON body must be an object")
67
+ self._send_api("POST", path, payload)
68
+ except Exception as exc: # defensive API boundary
69
+ self._send_json(400, {"ok": False, "error": str(exc)})
70
+
71
+ def log_message(self, format: str, *args: Any) -> None: # noqa: A002
72
+ return
73
+
74
+ def _send_api(
75
+ self,
76
+ method: str,
77
+ path: str,
78
+ payload: dict[str, Any] | None,
79
+ ) -> None:
80
+ try:
81
+ status, response = api_handler(method, path, payload)
82
+ except Exception as exc: # defensive API boundary
83
+ status, response = 500, {"ok": False, "error": str(exc)}
84
+ self._send_json(status, response)
85
+
86
+ def _send_json(self, status: int, payload: dict[str, Any]) -> None:
87
+ body = json.dumps(payload, indent=2, sort_keys=True).encode("utf-8")
88
+ self.send_response(status)
89
+ self.send_header("Content-Type", "application/json; charset=utf-8")
90
+ self.send_header("Content-Length", str(len(body)))
91
+ self.send_header("Cache-Control", "no-store")
92
+ self.end_headers()
93
+ self.wfile.write(body)
94
+
95
+ def _send_text(self, status: int, body: str, content_type: str) -> None:
96
+ encoded = body.encode("utf-8")
97
+ self.send_response(status)
98
+ self.send_header("Content-Type", content_type)
99
+ self.send_header("Content-Length", str(len(encoded)))
100
+ self.send_header("Cache-Control", "no-store")
101
+ self.end_headers()
102
+ self.wfile.write(encoded)
103
+
104
+ server = ThreadingHTTPServer((host, actual_port), Handler)
105
+ url = f"http://{host}:{actual_port}/"
106
+ print(f"{product_name} UI listening on {url}")
107
+ if open_browser:
108
+ webbrowser.open(url)
109
+ try:
110
+ server.serve_forever()
111
+ except KeyboardInterrupt:
112
+ print(f"{product_name} UI stopped")
113
+ finally:
114
+ server.server_close()
115
+ return 0
marama_route/cli.py CHANGED
@@ -41,6 +41,18 @@ def _chat_dry_run(args: argparse.Namespace) -> int:
41
  return 0 if selected is not None else 2
42
 
43
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  def build_parser() -> argparse.ArgumentParser:
45
  parser = argparse.ArgumentParser(
46
  prog="lumynax-marama-route",
@@ -66,6 +78,17 @@ def build_parser() -> argparse.ArgumentParser:
66
  chat.add_argument("--registry", type=Path, required=True, help="MaramaRoute model registry JSON.")
67
  chat.add_argument("--request", type=Path, required=True, help="OpenAI chat request JSON.")
68
  chat.set_defaults(handler=_chat_dry_run)
 
 
 
 
 
 
 
 
 
 
 
69
  return parser
70
 
71
 
 
41
  return 0 if selected is not None else 2
42
 
43
 
44
+ def _ui(args: argparse.Namespace) -> int:
45
+ from .ui import run_ui
46
+
47
+ return run_ui(
48
+ registry_path=args.registry,
49
+ host=args.host,
50
+ port=args.port,
51
+ open_browser=args.open,
52
+ smoke=args.smoke,
53
+ )
54
+
55
+
56
  def build_parser() -> argparse.ArgumentParser:
57
  parser = argparse.ArgumentParser(
58
  prog="lumynax-marama-route",
 
78
  chat.add_argument("--registry", type=Path, required=True, help="MaramaRoute model registry JSON.")
79
  chat.add_argument("--request", type=Path, required=True, help="OpenAI chat request JSON.")
80
  chat.set_defaults(handler=_chat_dry_run)
81
+
82
+ ui = subparsers.add_parser(
83
+ "ui",
84
+ help="Launch the local MaramaRoute browser platform.",
85
+ )
86
+ ui.add_argument("--registry", type=Path, default=None, help="MaramaRoute model registry JSON.")
87
+ ui.add_argument("--host", type=str, default="127.0.0.1")
88
+ ui.add_argument("--port", type=int, default=8787)
89
+ ui.add_argument("--open", action=argparse.BooleanOptionalAction, default=False)
90
+ ui.add_argument("--smoke", action=argparse.BooleanOptionalAction, default=False)
91
+ ui.set_defaults(handler=_ui)
92
  return parser
93
 
94
 
marama_route/configs/default_policy.yaml ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ policy_id: abx-sovereigncode-default-v0
2
+ default_jurisdiction: NZ
3
+ default_resident_regions:
4
+ - NZ
5
+ high_impact_sensitivity:
6
+ - personal
7
+ - restricted
8
+ - health
9
+ - iwi
10
+ - taonga
11
+ default_obligations:
12
+ - write_immutable_audit_record
13
+ - preserve_capsule_id_in_agent_trace
14
+ - show_diff_before_write_or_commit
15
+ denied_without_human_approval:
16
+ - delete_file
17
+ - execute_shell
18
+ - network_export
19
+ - publish
20
+ - commit
21
+ remote_model_rule:
22
+ restricted_data_requires_local_or_lumynax: true
23
+ training_rule:
24
+ requires_capsule_training_allowed: true
25
+ export_rule:
26
+ requires_capsule_export_allowed: true
marama_route/configs/lumynax_model_registry.json ADDED
@@ -0,0 +1,3251 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "registry_id": "lumynax-marama-route-registry-v0",
3
+ "publisher": "AbteeX AI Labs",
4
+ "source_report": "docs/releases/hf-model-card-v4-refresh-2026-05-11.json",
5
+ "model_count": 82,
6
+ "models": [
7
+ {
8
+ "model_id": "lumynax-coder-qwen25-05b-instruct-gguf",
9
+ "repo_id": "AbteeXAILab/lumynax-coder-qwen25-05b-instruct-gguf",
10
+ "title": "LumynaX Coder Qwen2.5 0.5B Instruct GGUF",
11
+ "family": "qwen",
12
+ "runtime": "llama_cpp",
13
+ "modalities": [
14
+ "text"
15
+ ],
16
+ "context_tokens": 32768,
17
+ "jurisdiction": "NZ",
18
+ "residency": [
19
+ "NZ"
20
+ ],
21
+ "license_id": "see_model_card",
22
+ "quantization": "see_release_manifest",
23
+ "primary_artifact": "qwen2.5-coder-0.5b-instruct-q4_k_m.gguf",
24
+ "active_params_b": null,
25
+ "total_params_b": 0.5,
26
+ "quality_rank": 5,
27
+ "cost_rank": 2,
28
+ "sovereignty_tier": 3,
29
+ "supports_tools": true,
30
+ "supports_json": true,
31
+ "tags": [
32
+ "coder",
33
+ "gguf",
34
+ "lumynax",
35
+ "qwen",
36
+ "text"
37
+ ],
38
+ "metadata": {
39
+ "hub_sha": "81c904af42045aeac88fa843b8f653d79afa0422",
40
+ "package_state": "prebuilt_gguf_release",
41
+ "public_status": "public and non-gated",
42
+ "validation_status": "pass",
43
+ "total_weight_size": 491400064
44
+ }
45
+ },
46
+ {
47
+ "model_id": "lumynax-coder-qwen25-14b-instruct-gguf",
48
+ "repo_id": "AbteeXAILab/lumynax-coder-qwen25-14b-instruct-gguf",
49
+ "title": "LumynaX Coder Qwen2.5 14B Instruct GGUF",
50
+ "family": "qwen",
51
+ "runtime": "llama_cpp",
52
+ "modalities": [
53
+ "text"
54
+ ],
55
+ "context_tokens": 32768,
56
+ "jurisdiction": "NZ",
57
+ "residency": [
58
+ "NZ"
59
+ ],
60
+ "license_id": "see_model_card",
61
+ "quantization": "see_release_manifest",
62
+ "primary_artifact": "qwen2.5-coder-14b-instruct-q4_k_m.gguf",
63
+ "active_params_b": null,
64
+ "total_params_b": 14.0,
65
+ "quality_rank": 2,
66
+ "cost_rank": 6,
67
+ "sovereignty_tier": 3,
68
+ "supports_tools": true,
69
+ "supports_json": true,
70
+ "tags": [
71
+ "coder",
72
+ "gguf",
73
+ "lumynax",
74
+ "qwen",
75
+ "text"
76
+ ],
77
+ "metadata": {
78
+ "hub_sha": "e408c607528af8457900e4237b26184612f16e49",
79
+ "package_state": "prebuilt_gguf_release",
80
+ "public_status": "public and non-gated",
81
+ "validation_status": "pass",
82
+ "total_weight_size": 8988110272
83
+ }
84
+ },
85
+ {
86
+ "model_id": "lumynax-coder-qwen25-15b-instruct-gguf",
87
+ "repo_id": "AbteeXAILab/lumynax-coder-qwen25-15b-instruct-gguf",
88
+ "title": "LumynaX Coder Qwen2.5 1.5B Instruct GGUF",
89
+ "family": "qwen",
90
+ "runtime": "llama_cpp",
91
+ "modalities": [
92
+ "text"
93
+ ],
94
+ "context_tokens": 32768,
95
+ "jurisdiction": "NZ",
96
+ "residency": [
97
+ "NZ"
98
+ ],
99
+ "license_id": "see_model_card",
100
+ "quantization": "see_release_manifest",
101
+ "primary_artifact": "qwen2.5-coder-1.5b-instruct-q4_k_m.gguf",
102
+ "active_params_b": null,
103
+ "total_params_b": 1.5,
104
+ "quality_rank": 5,
105
+ "cost_rank": 4,
106
+ "sovereignty_tier": 3,
107
+ "supports_tools": true,
108
+ "supports_json": true,
109
+ "tags": [
110
+ "coder",
111
+ "gguf",
112
+ "lumynax",
113
+ "qwen",
114
+ "text"
115
+ ],
116
+ "metadata": {
117
+ "hub_sha": "cbe84212ed061b79297683f6d6247fd22f1fde7c",
118
+ "package_state": "prebuilt_gguf_release",
119
+ "public_status": "public and non-gated",
120
+ "validation_status": "pass",
121
+ "total_weight_size": 1117320768
122
+ }
123
+ },
124
+ {
125
+ "model_id": "lumynax-coder-qwen25-7b-instruct-gguf",
126
+ "repo_id": "AbteeXAILab/lumynax-coder-qwen25-7b-instruct-gguf",
127
+ "title": "LumynaX Coder Qwen2.5 7B Instruct GGUF",
128
+ "family": "qwen",
129
+ "runtime": "llama_cpp",
130
+ "modalities": [
131
+ "text"
132
+ ],
133
+ "context_tokens": 32768,
134
+ "jurisdiction": "NZ",
135
+ "residency": [
136
+ "NZ"
137
+ ],
138
+ "license_id": "see_model_card",
139
+ "quantization": "see_release_manifest",
140
+ "primary_artifact": "qwen2.5-coder-7b-instruct-q4_k_m.gguf",
141
+ "active_params_b": null,
142
+ "total_params_b": 7.0,
143
+ "quality_rank": 3,
144
+ "cost_rank": 6,
145
+ "sovereignty_tier": 3,
146
+ "supports_tools": true,
147
+ "supports_json": true,
148
+ "tags": [
149
+ "coder",
150
+ "gguf",
151
+ "lumynax",
152
+ "qwen",
153
+ "text"
154
+ ],
155
+ "metadata": {
156
+ "hub_sha": "fe5491063e09af13dbdb7fa6cef7f57d5cecc14d",
157
+ "package_state": "prebuilt_gguf_release",
158
+ "public_status": "public and non-gated",
159
+ "validation_status": "pass",
160
+ "total_weight_size": 4683073536
161
+ }
162
+ },
163
+ {
164
+ "model_id": "lumynax-embed-bge-m3",
165
+ "repo_id": "AbteeXAILab/lumynax-embed-bge-m3",
166
+ "title": "LumynaX Embed BGE M3",
167
+ "family": "embedding",
168
+ "runtime": "python_embedding",
169
+ "modalities": [
170
+ "text",
171
+ "embedding"
172
+ ],
173
+ "context_tokens": 8192,
174
+ "jurisdiction": "NZ",
175
+ "residency": [
176
+ "NZ"
177
+ ],
178
+ "license_id": "see_model_card",
179
+ "quantization": "see_release_manifest",
180
+ "primary_artifact": "merged_model/pytorch_model.bin",
181
+ "active_params_b": null,
182
+ "total_params_b": null,
183
+ "quality_rank": 4,
184
+ "cost_rank": 4,
185
+ "sovereignty_tier": 2,
186
+ "supports_tools": false,
187
+ "supports_json": false,
188
+ "tags": [
189
+ "embedding",
190
+ "lumynax",
191
+ "text"
192
+ ],
193
+ "metadata": {
194
+ "hub_sha": "05011e1f7ea9cbd714c8fef86695a498685750a8",
195
+ "package_state": "upstream_weights_hydrated_embedding",
196
+ "public_status": "public and non-gated",
197
+ "validation_status": "pass",
198
+ "total_weight_size": 2273250020
199
+ }
200
+ },
201
+ {
202
+ "model_id": "lumynax-embed-e5-mistral-7b",
203
+ "repo_id": "AbteeXAILab/lumynax-embed-e5-mistral-7b",
204
+ "title": "LumynaX Embed E5 Mistral 7B",
205
+ "family": "mistral",
206
+ "runtime": "python_embedding",
207
+ "modalities": [
208
+ "text",
209
+ "embedding"
210
+ ],
211
+ "context_tokens": 8192,
212
+ "jurisdiction": "NZ",
213
+ "residency": [
214
+ "NZ"
215
+ ],
216
+ "license_id": "see_model_card",
217
+ "quantization": "see_release_manifest",
218
+ "primary_artifact": "merged_model/model-00001-of-00002.safetensors",
219
+ "active_params_b": null,
220
+ "total_params_b": 7.0,
221
+ "quality_rank": 3,
222
+ "cost_rank": 8,
223
+ "sovereignty_tier": 2,
224
+ "supports_tools": false,
225
+ "supports_json": false,
226
+ "tags": [
227
+ "embedding",
228
+ "lumynax",
229
+ "mistral",
230
+ "text"
231
+ ],
232
+ "metadata": {
233
+ "hub_sha": "0c8fc35c248b9bbc951df8904c97f41c51a883c2",
234
+ "package_state": "upstream_weights_hydrated_embedding",
235
+ "public_status": "public and non-gated",
236
+ "validation_status": "pass",
237
+ "total_weight_size": 14221351904
238
+ }
239
+ },
240
+ {
241
+ "model_id": "lumynax-frontier-minimax-m25-unsloth",
242
+ "repo_id": "AbteeXAILab/lumynax-frontier-minimax-m25-unsloth",
243
+ "title": "LumynaX Frontier MiniMax M2.5 Unsloth",
244
+ "family": "minimax",
245
+ "runtime": "llama_cpp",
246
+ "modalities": [
247
+ "text"
248
+ ],
249
+ "context_tokens": 8192,
250
+ "jurisdiction": "NZ",
251
+ "residency": [
252
+ "NZ"
253
+ ],
254
+ "license_id": "see_model_card",
255
+ "quantization": "see_release_manifest",
256
+ "primary_artifact": "MiniMax-M2.5-UD-TQ1_0.gguf",
257
+ "active_params_b": null,
258
+ "total_params_b": null,
259
+ "quality_rank": 1,
260
+ "cost_rank": 10,
261
+ "sovereignty_tier": 3,
262
+ "supports_tools": false,
263
+ "supports_json": true,
264
+ "tags": [
265
+ "frontier",
266
+ "general",
267
+ "lumynax",
268
+ "text"
269
+ ],
270
+ "metadata": {
271
+ "hub_sha": "ff328be463825aedd9cec5b8f5fe3fce47f7547f",
272
+ "package_state": "prebuilt_gguf_release",
273
+ "public_status": "public and non-gated",
274
+ "validation_status": "pass",
275
+ "total_weight_size": 55765943424
276
+ }
277
+ },
278
+ {
279
+ "model_id": "lumynax-infused-gemma-e4b",
280
+ "repo_id": "AbteeXAILab/lumynax-infused-gemma-e4b",
281
+ "title": "LumynaX Infused Gemma E4B Model",
282
+ "family": "gemma",
283
+ "runtime": "transformers_multimodal",
284
+ "modalities": [
285
+ "text",
286
+ "image",
287
+ "audio"
288
+ ],
289
+ "context_tokens": 4096,
290
+ "jurisdiction": "NZ",
291
+ "residency": [
292
+ "NZ"
293
+ ],
294
+ "license_id": "see_model_card",
295
+ "quantization": "see_release_manifest",
296
+ "primary_artifact": "merged_model/model.safetensors",
297
+ "active_params_b": null,
298
+ "total_params_b": 4.0,
299
+ "quality_rank": 3,
300
+ "cost_rank": 8,
301
+ "sovereignty_tier": 2,
302
+ "supports_tools": false,
303
+ "supports_json": true,
304
+ "tags": [
305
+ "audio",
306
+ "gemma",
307
+ "general",
308
+ "image",
309
+ "lumynax",
310
+ "text"
311
+ ],
312
+ "metadata": {
313
+ "hub_sha": "71c0d98bc3ac1b90d3d59dbc5505910e6edef6a6",
314
+ "package_state": "base_weights_hydrated",
315
+ "public_status": "public and non-gated",
316
+ "validation_status": "pass",
317
+ "total_weight_size": 15992595884
318
+ }
319
+ },
320
+ {
321
+ "model_id": "lumynax-infused-gemma-e4b-text-gguf",
322
+ "repo_id": "AbteeXAILab/lumynax-infused-gemma-e4b-text-gguf",
323
+ "title": "LumynaX Infused Gemma E4B Text GGUF",
324
+ "family": "gemma",
325
+ "runtime": "llama_cpp",
326
+ "modalities": [
327
+ "text"
328
+ ],
329
+ "context_tokens": 8192,
330
+ "jurisdiction": "NZ",
331
+ "residency": [
332
+ "NZ"
333
+ ],
334
+ "license_id": "see_model_card",
335
+ "quantization": "see_release_manifest",
336
+ "primary_artifact": "lumynax-infused-gemma-e4b-text-gguf-q4_k_m.gguf",
337
+ "active_params_b": null,
338
+ "total_params_b": 4.0,
339
+ "quality_rank": 3,
340
+ "cost_rank": 6,
341
+ "sovereignty_tier": 3,
342
+ "supports_tools": false,
343
+ "supports_json": true,
344
+ "tags": [
345
+ "gemma",
346
+ "general",
347
+ "gguf",
348
+ "lumynax",
349
+ "text"
350
+ ],
351
+ "metadata": {
352
+ "hub_sha": "da670d4d4c080f93e37171d69f2e49cbe0740f4c",
353
+ "package_state": "hf_q4_runtime_bundle",
354
+ "public_status": "public and non-gated",
355
+ "validation_status": "pass",
356
+ "total_weight_size": 5335290080
357
+ }
358
+ },
359
+ {
360
+ "model_id": "lumynax-infused-gemma4-26b-a4b-gguf",
361
+ "repo_id": "AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf",
362
+ "title": "LumynaX Infused Gemma4 26B A4B GGUF",
363
+ "family": "gemma",
364
+ "runtime": "llama_cpp",
365
+ "modalities": [
366
+ "text"
367
+ ],
368
+ "context_tokens": 8192,
369
+ "jurisdiction": "NZ",
370
+ "residency": [
371
+ "NZ"
372
+ ],
373
+ "license_id": "see_model_card",
374
+ "quantization": "see_release_manifest",
375
+ "primary_artifact": "lumynax-infused-gemma4-26b-a4b-ud-q4_k_m.gguf",
376
+ "active_params_b": 4.0,
377
+ "total_params_b": 26.0,
378
+ "quality_rank": 1,
379
+ "cost_rank": 8,
380
+ "sovereignty_tier": 3,
381
+ "supports_tools": false,
382
+ "supports_json": true,
383
+ "tags": [
384
+ "gemma",
385
+ "general",
386
+ "gguf",
387
+ "lumynax",
388
+ "text"
389
+ ],
390
+ "metadata": {
391
+ "hub_sha": "9ac3619aaa892edf714fad37d566dcc75e3c63e6",
392
+ "package_state": "prebuilt_gguf_release",
393
+ "public_status": "public and non-gated",
394
+ "validation_status": "pass",
395
+ "total_weight_size": 16947539744
396
+ }
397
+ },
398
+ {
399
+ "model_id": "lumynax-infused-granite31-1b-a400m-gguf",
400
+ "repo_id": "AbteeXAILab/lumynax-infused-granite31-1b-a400m-gguf",
401
+ "title": "LumynaX Infused Granite 3.1 1B A400M Instruct GGUF",
402
+ "family": "granite",
403
+ "runtime": "llama_cpp",
404
+ "modalities": [
405
+ "text"
406
+ ],
407
+ "context_tokens": 8192,
408
+ "jurisdiction": "NZ",
409
+ "residency": [
410
+ "NZ"
411
+ ],
412
+ "license_id": "see_model_card",
413
+ "quantization": "see_release_manifest",
414
+ "primary_artifact": "granite-3.1-1b-a400m-instruct-Q4_K_M.gguf",
415
+ "active_params_b": null,
416
+ "total_params_b": 1.0,
417
+ "quality_rank": 5,
418
+ "cost_rank": 2,
419
+ "sovereignty_tier": 3,
420
+ "supports_tools": false,
421
+ "supports_json": true,
422
+ "tags": [
423
+ "general",
424
+ "gguf",
425
+ "granite",
426
+ "lumynax",
427
+ "text"
428
+ ],
429
+ "metadata": {
430
+ "hub_sha": "4962677e55c151eb9540257318fd640ce1f002e7",
431
+ "package_state": "prebuilt_gguf_release",
432
+ "public_status": "public and non-gated",
433
+ "validation_status": "pass",
434
+ "total_weight_size": 821847360
435
+ }
436
+ },
437
+ {
438
+ "model_id": "lumynax-infused-granite33-2b-gguf",
439
+ "repo_id": "AbteeXAILab/lumynax-infused-granite33-2b-gguf",
440
+ "title": "LumynaX Infused Granite 3.3 2B Instruct GGUF",
441
+ "family": "granite",
442
+ "runtime": "llama_cpp",
443
+ "modalities": [
444
+ "text"
445
+ ],
446
+ "context_tokens": 8192,
447
+ "jurisdiction": "NZ",
448
+ "residency": [
449
+ "NZ"
450
+ ],
451
+ "license_id": "see_model_card",
452
+ "quantization": "see_release_manifest",
453
+ "primary_artifact": "granite-3.3-2b-instruct-Q4_K_M.gguf",
454
+ "active_params_b": null,
455
+ "total_params_b": 2.0,
456
+ "quality_rank": 4,
457
+ "cost_rank": 4,
458
+ "sovereignty_tier": 3,
459
+ "supports_tools": false,
460
+ "supports_json": true,
461
+ "tags": [
462
+ "general",
463
+ "gguf",
464
+ "granite",
465
+ "lumynax",
466
+ "text"
467
+ ],
468
+ "metadata": {
469
+ "hub_sha": "008f69d6d7ed46cfa4a26e14f1a36ed7840ca86e",
470
+ "package_state": "prebuilt_gguf_release",
471
+ "public_status": "public and non-gated",
472
+ "validation_status": "pass",
473
+ "total_weight_size": 1545303328
474
+ }
475
+ },
476
+ {
477
+ "model_id": "lumynax-infused-granite33-8b-gguf",
478
+ "repo_id": "AbteeXAILab/lumynax-infused-granite33-8b-gguf",
479
+ "title": "LumynaX Infused Granite 3.3 8B Instruct GGUF",
480
+ "family": "granite",
481
+ "runtime": "llama_cpp",
482
+ "modalities": [
483
+ "text"
484
+ ],
485
+ "context_tokens": 8192,
486
+ "jurisdiction": "NZ",
487
+ "residency": [
488
+ "NZ"
489
+ ],
490
+ "license_id": "see_model_card",
491
+ "quantization": "see_release_manifest",
492
+ "primary_artifact": "granite-3.3-8b-instruct-Q4_K_M.gguf",
493
+ "active_params_b": null,
494
+ "total_params_b": 8.0,
495
+ "quality_rank": 3,
496
+ "cost_rank": 6,
497
+ "sovereignty_tier": 3,
498
+ "supports_tools": false,
499
+ "supports_json": true,
500
+ "tags": [
501
+ "general",
502
+ "gguf",
503
+ "granite",
504
+ "lumynax",
505
+ "text"
506
+ ],
507
+ "metadata": {
508
+ "hub_sha": "9a73a865e7121274789cee80e6543444e034bb01",
509
+ "package_state": "prebuilt_gguf_release",
510
+ "public_status": "public and non-gated",
511
+ "validation_status": "pass",
512
+ "total_weight_size": 4942873344
513
+ }
514
+ },
515
+ {
516
+ "model_id": "lumynax-infused-mistral-7b-v03-gguf",
517
+ "repo_id": "AbteeXAILab/lumynax-infused-mistral-7b-v03-gguf",
518
+ "title": "LumynaX Infused Mistral 7B Instruct v0.3 GGUF",
519
+ "family": "mistral",
520
+ "runtime": "llama_cpp",
521
+ "modalities": [
522
+ "text"
523
+ ],
524
+ "context_tokens": 8192,
525
+ "jurisdiction": "NZ",
526
+ "residency": [
527
+ "NZ"
528
+ ],
529
+ "license_id": "see_model_card",
530
+ "quantization": "see_release_manifest",
531
+ "primary_artifact": "Mistral-7B-Instruct-v0.3-Q4_K_M.gguf",
532
+ "active_params_b": null,
533
+ "total_params_b": 7.0,
534
+ "quality_rank": 3,
535
+ "cost_rank": 6,
536
+ "sovereignty_tier": 3,
537
+ "supports_tools": false,
538
+ "supports_json": true,
539
+ "tags": [
540
+ "general",
541
+ "gguf",
542
+ "lumynax",
543
+ "mistral",
544
+ "text"
545
+ ],
546
+ "metadata": {
547
+ "hub_sha": "b27abdbb78659b9577c68040838a4811bb2a4fc4",
548
+ "package_state": "prebuilt_gguf_release",
549
+ "public_status": "public and non-gated",
550
+ "validation_status": "pass",
551
+ "total_weight_size": 4372812000
552
+ }
553
+ },
554
+ {
555
+ "model_id": "lumynax-infused-mistral-small-text-gguf",
556
+ "repo_id": "AbteeXAILab/lumynax-infused-mistral-small-text-gguf",
557
+ "title": "LumynaX Infused Mistral Small Text GGUF",
558
+ "family": "mistral",
559
+ "runtime": "llama_cpp",
560
+ "modalities": [
561
+ "text"
562
+ ],
563
+ "context_tokens": 8192,
564
+ "jurisdiction": "NZ",
565
+ "residency": [
566
+ "NZ"
567
+ ],
568
+ "license_id": "see_model_card",
569
+ "quantization": "see_release_manifest",
570
+ "primary_artifact": "lumynax-infused-mistral-small-text-gguf-f16.gguf",
571
+ "active_params_b": null,
572
+ "total_params_b": null,
573
+ "quality_rank": 3,
574
+ "cost_rank": 10,
575
+ "sovereignty_tier": 3,
576
+ "supports_tools": false,
577
+ "supports_json": true,
578
+ "tags": [
579
+ "general",
580
+ "gguf",
581
+ "lumynax",
582
+ "mistral",
583
+ "text"
584
+ ],
585
+ "metadata": {
586
+ "hub_sha": "f0dcbb1666de6f53212277f225ca5eb0901d9627",
587
+ "package_state": "base_weights_hydrated_text_gguf",
588
+ "public_status": "public and non-gated",
589
+ "validation_status": "pass",
590
+ "total_weight_size": 61488486400
591
+ }
592
+ },
593
+ {
594
+ "model_id": "lumynax-infused-olmo2-1b-0425-gguf",
595
+ "repo_id": "AbteeXAILab/lumynax-infused-olmo2-1b-0425-gguf",
596
+ "title": "LumynaX Infused OLMo 2 0425 1B Instruct GGUF",
597
+ "family": "olmo",
598
+ "runtime": "llama_cpp",
599
+ "modalities": [
600
+ "text"
601
+ ],
602
+ "context_tokens": 8192,
603
+ "jurisdiction": "NZ",
604
+ "residency": [
605
+ "NZ"
606
+ ],
607
+ "license_id": "see_model_card",
608
+ "quantization": "see_release_manifest",
609
+ "primary_artifact": "OLMo-2-0425-1B-Instruct-Q4_K_M.gguf",
610
+ "active_params_b": null,
611
+ "total_params_b": 1.0,
612
+ "quality_rank": 5,
613
+ "cost_rank": 2,
614
+ "sovereignty_tier": 3,
615
+ "supports_tools": false,
616
+ "supports_json": true,
617
+ "tags": [
618
+ "general",
619
+ "gguf",
620
+ "lumynax",
621
+ "text"
622
+ ],
623
+ "metadata": {
624
+ "hub_sha": "6bbec139651766aaf4310e2affe44504a0bb3a02",
625
+ "package_state": "prebuilt_gguf_release",
626
+ "public_status": "public and non-gated",
627
+ "validation_status": "pass",
628
+ "total_weight_size": 935515296
629
+ }
630
+ },
631
+ {
632
+ "model_id": "lumynax-infused-olmo2-7b-1124-gguf",
633
+ "repo_id": "AbteeXAILab/lumynax-infused-olmo2-7b-1124-gguf",
634
+ "title": "LumynaX Infused OLMo 2 1124 7B Instruct GGUF",
635
+ "family": "olmo",
636
+ "runtime": "llama_cpp",
637
+ "modalities": [
638
+ "text"
639
+ ],
640
+ "context_tokens": 8192,
641
+ "jurisdiction": "NZ",
642
+ "residency": [
643
+ "NZ"
644
+ ],
645
+ "license_id": "see_model_card",
646
+ "quantization": "see_release_manifest",
647
+ "primary_artifact": "olmo-2-1124-7B-instruct-Q4_K_M.gguf",
648
+ "active_params_b": null,
649
+ "total_params_b": 7.0,
650
+ "quality_rank": 3,
651
+ "cost_rank": 6,
652
+ "sovereignty_tier": 3,
653
+ "supports_tools": false,
654
+ "supports_json": true,
655
+ "tags": [
656
+ "general",
657
+ "gguf",
658
+ "lumynax",
659
+ "text"
660
+ ],
661
+ "metadata": {
662
+ "hub_sha": "c37a2b4ccca91a97d57058b33037a0ce2d32dd91",
663
+ "package_state": "prebuilt_gguf_release",
664
+ "public_status": "public and non-gated",
665
+ "validation_status": "pass",
666
+ "total_weight_size": 4472020256
667
+ }
668
+ },
669
+ {
670
+ "model_id": "lumynax-infused-phi-4-text-gguf",
671
+ "repo_id": "AbteeXAILab/lumynax-infused-phi-4-text-gguf",
672
+ "title": "LumynaX Infused Phi-4 Text GGUF",
673
+ "family": "phi",
674
+ "runtime": "llama_cpp",
675
+ "modalities": [
676
+ "text"
677
+ ],
678
+ "context_tokens": 8192,
679
+ "jurisdiction": "NZ",
680
+ "residency": [
681
+ "NZ"
682
+ ],
683
+ "license_id": "see_model_card",
684
+ "quantization": "see_release_manifest",
685
+ "primary_artifact": "lumynax-infused-phi-4-text-gguf-f16.gguf",
686
+ "active_params_b": null,
687
+ "total_params_b": null,
688
+ "quality_rank": 3,
689
+ "cost_rank": 10,
690
+ "sovereignty_tier": 3,
691
+ "supports_tools": false,
692
+ "supports_json": true,
693
+ "tags": [
694
+ "general",
695
+ "gguf",
696
+ "lumynax",
697
+ "phi",
698
+ "text"
699
+ ],
700
+ "metadata": {
701
+ "hub_sha": "d1ea33475c83c3ce97e63789ab9699e5f534a639",
702
+ "package_state": "base_weights_hydrated_text_gguf",
703
+ "public_status": "public and non-gated",
704
+ "validation_status": "pass",
705
+ "total_weight_size": 38382657280
706
+ }
707
+ },
708
+ {
709
+ "model_id": "lumynax-infused-phi3-mini-4k-gguf",
710
+ "repo_id": "AbteeXAILab/lumynax-infused-phi3-mini-4k-gguf",
711
+ "title": "LumynaX Infused Phi-3 Mini 4K Instruct GGUF",
712
+ "family": "phi",
713
+ "runtime": "llama_cpp",
714
+ "modalities": [
715
+ "text"
716
+ ],
717
+ "context_tokens": 8192,
718
+ "jurisdiction": "NZ",
719
+ "residency": [
720
+ "NZ"
721
+ ],
722
+ "license_id": "see_model_card",
723
+ "quantization": "see_release_manifest",
724
+ "primary_artifact": "Phi-3-mini-4k-instruct-q4.gguf",
725
+ "active_params_b": null,
726
+ "total_params_b": null,
727
+ "quality_rank": 4,
728
+ "cost_rank": 4,
729
+ "sovereignty_tier": 3,
730
+ "supports_tools": false,
731
+ "supports_json": true,
732
+ "tags": [
733
+ "general",
734
+ "gguf",
735
+ "lumynax",
736
+ "phi",
737
+ "text"
738
+ ],
739
+ "metadata": {
740
+ "hub_sha": "726f4baf5b38e0ea150aaac0c893735f5af8b5d3",
741
+ "package_state": "prebuilt_gguf_release",
742
+ "public_status": "public and non-gated",
743
+ "validation_status": "pass",
744
+ "total_weight_size": 2393231072
745
+ }
746
+ },
747
+ {
748
+ "model_id": "lumynax-infused-phi4-mini-instruct-gguf",
749
+ "repo_id": "AbteeXAILab/lumynax-infused-phi4-mini-instruct-gguf",
750
+ "title": "LumynaX Infused Phi-4 Mini Instruct GGUF",
751
+ "family": "phi",
752
+ "runtime": "llama_cpp",
753
+ "modalities": [
754
+ "text"
755
+ ],
756
+ "context_tokens": 8192,
757
+ "jurisdiction": "NZ",
758
+ "residency": [
759
+ "NZ"
760
+ ],
761
+ "license_id": "see_model_card",
762
+ "quantization": "see_release_manifest",
763
+ "primary_artifact": "Phi-4-mini-instruct-Q4_K_M.gguf",
764
+ "active_params_b": null,
765
+ "total_params_b": null,
766
+ "quality_rank": 4,
767
+ "cost_rank": 4,
768
+ "sovereignty_tier": 3,
769
+ "supports_tools": false,
770
+ "supports_json": true,
771
+ "tags": [
772
+ "general",
773
+ "gguf",
774
+ "lumynax",
775
+ "phi",
776
+ "text"
777
+ ],
778
+ "metadata": {
779
+ "hub_sha": "0159c99af7f773fed806a9c298752698ebecfb74",
780
+ "package_state": "prebuilt_gguf_release",
781
+ "public_status": "public and non-gated",
782
+ "validation_status": "pass",
783
+ "total_weight_size": 2491874272
784
+ }
785
+ },
786
+ {
787
+ "model_id": "lumynax-infused-qwen2-audio-7b",
788
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen2-audio-7b",
789
+ "title": "LumynaX Infused Qwen2 Audio 7B",
790
+ "family": "qwen",
791
+ "runtime": "transformers",
792
+ "modalities": [
793
+ "audio",
794
+ "text"
795
+ ],
796
+ "context_tokens": 32768,
797
+ "jurisdiction": "NZ",
798
+ "residency": [
799
+ "NZ"
800
+ ],
801
+ "license_id": "see_model_card",
802
+ "quantization": "see_release_manifest",
803
+ "primary_artifact": "merged_model/model-00003-of-00005.safetensors",
804
+ "active_params_b": null,
805
+ "total_params_b": 7.0,
806
+ "quality_rank": 3,
807
+ "cost_rank": 8,
808
+ "sovereignty_tier": 2,
809
+ "supports_tools": false,
810
+ "supports_json": true,
811
+ "tags": [
812
+ "audio",
813
+ "general",
814
+ "lumynax",
815
+ "qwen",
816
+ "text"
817
+ ],
818
+ "metadata": {
819
+ "hub_sha": "e743d9eede8807f4a0ecff7d6d81a48c6bfd0aa9",
820
+ "package_state": "upstream_weights_hydrated_audio",
821
+ "public_status": "public and non-gated",
822
+ "validation_status": "pass",
823
+ "total_weight_size": 16794296368
824
+ }
825
+ },
826
+ {
827
+ "model_id": "lumynax-infused-qwen25-15b-instruct-gguf",
828
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen25-15b-instruct-gguf",
829
+ "title": "LumynaX Infused Qwen2.5 1.5B Instruct GGUF",
830
+ "family": "qwen",
831
+ "runtime": "llama_cpp",
832
+ "modalities": [
833
+ "text"
834
+ ],
835
+ "context_tokens": 32768,
836
+ "jurisdiction": "NZ",
837
+ "residency": [
838
+ "NZ"
839
+ ],
840
+ "license_id": "see_model_card",
841
+ "quantization": "see_release_manifest",
842
+ "primary_artifact": "qwen2.5-1.5b-instruct-q4_k_m.gguf",
843
+ "active_params_b": null,
844
+ "total_params_b": 1.5,
845
+ "quality_rank": 4,
846
+ "cost_rank": 4,
847
+ "sovereignty_tier": 3,
848
+ "supports_tools": false,
849
+ "supports_json": true,
850
+ "tags": [
851
+ "general",
852
+ "gguf",
853
+ "lumynax",
854
+ "qwen",
855
+ "text"
856
+ ],
857
+ "metadata": {
858
+ "hub_sha": "56236805876d7cde2954862e1dd3588a55a6912e",
859
+ "package_state": "prebuilt_gguf_release",
860
+ "public_status": "public and non-gated",
861
+ "validation_status": "pass",
862
+ "total_weight_size": 1117320736
863
+ }
864
+ },
865
+ {
866
+ "model_id": "lumynax-infused-qwen25-3b-instruct-gguf",
867
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen25-3b-instruct-gguf",
868
+ "title": "LumynaX Infused Qwen2.5 3B Instruct GGUF",
869
+ "family": "qwen",
870
+ "runtime": "llama_cpp",
871
+ "modalities": [
872
+ "text"
873
+ ],
874
+ "context_tokens": 32768,
875
+ "jurisdiction": "NZ",
876
+ "residency": [
877
+ "NZ"
878
+ ],
879
+ "license_id": "see_model_card",
880
+ "quantization": "see_release_manifest",
881
+ "primary_artifact": "qwen2.5-3b-instruct-q4_k_m.gguf",
882
+ "active_params_b": null,
883
+ "total_params_b": 3.0,
884
+ "quality_rank": 4,
885
+ "cost_rank": 4,
886
+ "sovereignty_tier": 3,
887
+ "supports_tools": false,
888
+ "supports_json": true,
889
+ "tags": [
890
+ "general",
891
+ "gguf",
892
+ "lumynax",
893
+ "qwen",
894
+ "text"
895
+ ],
896
+ "metadata": {
897
+ "hub_sha": "03272f747319be4d718c9feef64d5078bb8a0c07",
898
+ "package_state": "prebuilt_gguf_release",
899
+ "public_status": "public and non-gated",
900
+ "validation_status": "pass",
901
+ "total_weight_size": 2104932768
902
+ }
903
+ },
904
+ {
905
+ "model_id": "lumynax-infused-qwen25-7b-instruct-gguf",
906
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen25-7b-instruct-gguf",
907
+ "title": "LumynaX Infused Qwen2.5 7B Instruct GGUF",
908
+ "family": "qwen",
909
+ "runtime": "llama_cpp",
910
+ "modalities": [
911
+ "text"
912
+ ],
913
+ "context_tokens": 32768,
914
+ "jurisdiction": "NZ",
915
+ "residency": [
916
+ "NZ"
917
+ ],
918
+ "license_id": "see_model_card",
919
+ "quantization": "see_release_manifest",
920
+ "primary_artifact": "qwen2.5-7b-instruct-q3_k_m.gguf",
921
+ "active_params_b": null,
922
+ "total_params_b": 7.0,
923
+ "quality_rank": 3,
924
+ "cost_rank": 4,
925
+ "sovereignty_tier": 3,
926
+ "supports_tools": false,
927
+ "supports_json": true,
928
+ "tags": [
929
+ "general",
930
+ "gguf",
931
+ "lumynax",
932
+ "qwen",
933
+ "text"
934
+ ],
935
+ "metadata": {
936
+ "hub_sha": "a499dae1ce806b58f9727ca417615fd03958d115",
937
+ "package_state": "prebuilt_gguf_release",
938
+ "public_status": "public and non-gated",
939
+ "validation_status": "pass",
940
+ "total_weight_size": 3808391072
941
+ }
942
+ },
943
+ {
944
+ "model_id": "lumynax-infused-qwen25-omni-7b-voice",
945
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen25-omni-7b-voice",
946
+ "title": "LumynaX Infused Qwen2.5 Omni 7B Voice",
947
+ "family": "qwen",
948
+ "runtime": "transformers",
949
+ "modalities": [
950
+ "audio",
951
+ "text"
952
+ ],
953
+ "context_tokens": 32768,
954
+ "jurisdiction": "NZ",
955
+ "residency": [
956
+ "NZ"
957
+ ],
958
+ "license_id": "see_model_card",
959
+ "quantization": "see_release_manifest",
960
+ "primary_artifact": "merged_model/model-00003-of-00005.safetensors",
961
+ "active_params_b": null,
962
+ "total_params_b": 7.0,
963
+ "quality_rank": 3,
964
+ "cost_rank": 10,
965
+ "sovereignty_tier": 2,
966
+ "supports_tools": false,
967
+ "supports_json": true,
968
+ "tags": [
969
+ "audio",
970
+ "general",
971
+ "lumynax",
972
+ "qwen",
973
+ "text",
974
+ "voice"
975
+ ],
976
+ "metadata": {
977
+ "hub_sha": "8f2e5068851d87406998a678b3f69990fccb4ee3",
978
+ "package_state": "upstream_weights_hydrated_audio",
979
+ "public_status": "public and non-gated",
980
+ "validation_status": "pass",
981
+ "total_weight_size": 22362861192
982
+ }
983
+ },
984
+ {
985
+ "model_id": "lumynax-infused-qwen3-06b-gguf",
986
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-06b-gguf",
987
+ "title": "LumynaX Infused Qwen3 0.6B GGUF",
988
+ "family": "qwen",
989
+ "runtime": "llama_cpp",
990
+ "modalities": [
991
+ "text"
992
+ ],
993
+ "context_tokens": 32768,
994
+ "jurisdiction": "NZ",
995
+ "residency": [
996
+ "NZ"
997
+ ],
998
+ "license_id": "see_model_card",
999
+ "quantization": "see_release_manifest",
1000
+ "primary_artifact": "Qwen3-0.6B-Q8_0.gguf",
1001
+ "active_params_b": null,
1002
+ "total_params_b": 0.6,
1003
+ "quality_rank": 5,
1004
+ "cost_rank": 2,
1005
+ "sovereignty_tier": 3,
1006
+ "supports_tools": false,
1007
+ "supports_json": true,
1008
+ "tags": [
1009
+ "general",
1010
+ "gguf",
1011
+ "lumynax",
1012
+ "qwen",
1013
+ "text"
1014
+ ],
1015
+ "metadata": {
1016
+ "hub_sha": "1b61730d710869c3789fffcc422a4f15539cffcf",
1017
+ "package_state": "prebuilt_gguf_release",
1018
+ "public_status": "public and non-gated",
1019
+ "validation_status": "pass",
1020
+ "total_weight_size": 639446688
1021
+ }
1022
+ },
1023
+ {
1024
+ "model_id": "lumynax-infused-qwen3-14b-gguf",
1025
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-14b-gguf",
1026
+ "title": "LumynaX Infused Qwen3 14B GGUF",
1027
+ "family": "qwen",
1028
+ "runtime": "llama_cpp",
1029
+ "modalities": [
1030
+ "text"
1031
+ ],
1032
+ "context_tokens": 32768,
1033
+ "jurisdiction": "NZ",
1034
+ "residency": [
1035
+ "NZ"
1036
+ ],
1037
+ "license_id": "see_model_card",
1038
+ "quantization": "see_release_manifest",
1039
+ "primary_artifact": "Qwen3-14B-Q4_K_M.gguf",
1040
+ "active_params_b": null,
1041
+ "total_params_b": 14.0,
1042
+ "quality_rank": 2,
1043
+ "cost_rank": 8,
1044
+ "sovereignty_tier": 3,
1045
+ "supports_tools": false,
1046
+ "supports_json": true,
1047
+ "tags": [
1048
+ "general",
1049
+ "gguf",
1050
+ "lumynax",
1051
+ "qwen",
1052
+ "text"
1053
+ ],
1054
+ "metadata": {
1055
+ "hub_sha": "3fae690abff170d811eb5934efe6155621528d25",
1056
+ "package_state": "prebuilt_gguf_release",
1057
+ "public_status": "public and non-gated",
1058
+ "validation_status": "pass",
1059
+ "total_weight_size": 9001752960
1060
+ }
1061
+ },
1062
+ {
1063
+ "model_id": "lumynax-infused-qwen3-17b-gguf",
1064
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-17b-gguf",
1065
+ "title": "LumynaX Infused Qwen3 1.7B GGUF",
1066
+ "family": "qwen",
1067
+ "runtime": "llama_cpp",
1068
+ "modalities": [
1069
+ "text"
1070
+ ],
1071
+ "context_tokens": 32768,
1072
+ "jurisdiction": "NZ",
1073
+ "residency": [
1074
+ "NZ"
1075
+ ],
1076
+ "license_id": "see_model_card",
1077
+ "quantization": "see_release_manifest",
1078
+ "primary_artifact": "Qwen3-1.7B-Q8_0.gguf",
1079
+ "active_params_b": null,
1080
+ "total_params_b": 1.7,
1081
+ "quality_rank": 5,
1082
+ "cost_rank": 4,
1083
+ "sovereignty_tier": 3,
1084
+ "supports_tools": false,
1085
+ "supports_json": true,
1086
+ "tags": [
1087
+ "general",
1088
+ "gguf",
1089
+ "lumynax",
1090
+ "qwen",
1091
+ "text"
1092
+ ],
1093
+ "metadata": {
1094
+ "hub_sha": "5eb95b799e57e502872c9ed47e63580ee81558ff",
1095
+ "package_state": "prebuilt_gguf_release",
1096
+ "public_status": "public and non-gated",
1097
+ "validation_status": "pass",
1098
+ "total_weight_size": 1834426016
1099
+ }
1100
+ },
1101
+ {
1102
+ "model_id": "lumynax-infused-qwen3-30b-a3b-gguf",
1103
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-30b-a3b-gguf",
1104
+ "title": "LumynaX Infused Qwen3 30B A3B GGUF",
1105
+ "family": "qwen",
1106
+ "runtime": "llama_cpp",
1107
+ "modalities": [
1108
+ "text"
1109
+ ],
1110
+ "context_tokens": 32768,
1111
+ "jurisdiction": "NZ",
1112
+ "residency": [
1113
+ "NZ"
1114
+ ],
1115
+ "license_id": "see_model_card",
1116
+ "quantization": "see_release_manifest",
1117
+ "primary_artifact": "lumynax-infused-qwen3-30b-a3b-q4_k_m.gguf",
1118
+ "active_params_b": 3.0,
1119
+ "total_params_b": 30.0,
1120
+ "quality_rank": 1,
1121
+ "cost_rank": 8,
1122
+ "sovereignty_tier": 3,
1123
+ "supports_tools": false,
1124
+ "supports_json": true,
1125
+ "tags": [
1126
+ "general",
1127
+ "gguf",
1128
+ "lumynax",
1129
+ "qwen",
1130
+ "text"
1131
+ ],
1132
+ "metadata": {
1133
+ "hub_sha": "acfc6b800fc3979e419d4abfd51554b4d6e78abd",
1134
+ "package_state": "prebuilt_gguf_release",
1135
+ "public_status": "public and non-gated",
1136
+ "validation_status": "pass",
1137
+ "total_weight_size": 18556686912
1138
+ }
1139
+ },
1140
+ {
1141
+ "model_id": "lumynax-infused-qwen3-8b-gguf",
1142
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-8b-gguf",
1143
+ "title": "LumynaX Infused Qwen3 8B GGUF",
1144
+ "family": "qwen",
1145
+ "runtime": "llama_cpp",
1146
+ "modalities": [
1147
+ "text"
1148
+ ],
1149
+ "context_tokens": 32768,
1150
+ "jurisdiction": "NZ",
1151
+ "residency": [
1152
+ "NZ"
1153
+ ],
1154
+ "license_id": "see_model_card",
1155
+ "quantization": "see_release_manifest",
1156
+ "primary_artifact": "lumynax-infused-qwen3-8b-q4_k_m.gguf",
1157
+ "active_params_b": null,
1158
+ "total_params_b": 8.0,
1159
+ "quality_rank": 3,
1160
+ "cost_rank": 6,
1161
+ "sovereignty_tier": 3,
1162
+ "supports_tools": false,
1163
+ "supports_json": true,
1164
+ "tags": [
1165
+ "general",
1166
+ "gguf",
1167
+ "lumynax",
1168
+ "qwen",
1169
+ "text"
1170
+ ],
1171
+ "metadata": {
1172
+ "hub_sha": "c61c9a6fa0b95ec8a3da1912b897ca1fcc19d48a",
1173
+ "package_state": "prebuilt_gguf_release",
1174
+ "public_status": "public and non-gated",
1175
+ "validation_status": "pass",
1176
+ "total_weight_size": 5027783488
1177
+ }
1178
+ },
1179
+ {
1180
+ "model_id": "lumynax-infused-qwen3-coder-30b-a3b-gguf",
1181
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-coder-30b-a3b-gguf",
1182
+ "title": "LumynaX Infused Qwen3 Coder 30B A3B GGUF",
1183
+ "family": "qwen",
1184
+ "runtime": "llama_cpp",
1185
+ "modalities": [
1186
+ "text"
1187
+ ],
1188
+ "context_tokens": 32768,
1189
+ "jurisdiction": "NZ",
1190
+ "residency": [
1191
+ "NZ"
1192
+ ],
1193
+ "license_id": "see_model_card",
1194
+ "quantization": "see_release_manifest",
1195
+ "primary_artifact": "lumynax-infused-qwen3-coder-30b-a3b-q4_k_m.gguf",
1196
+ "active_params_b": 3.0,
1197
+ "total_params_b": 30.0,
1198
+ "quality_rank": 1,
1199
+ "cost_rank": 8,
1200
+ "sovereignty_tier": 3,
1201
+ "supports_tools": true,
1202
+ "supports_json": true,
1203
+ "tags": [
1204
+ "coder",
1205
+ "gguf",
1206
+ "lumynax",
1207
+ "qwen",
1208
+ "text"
1209
+ ],
1210
+ "metadata": {
1211
+ "hub_sha": "243f8578284934be06d3cb3d055de1b4a28059cc",
1212
+ "package_state": "prebuilt_gguf_release",
1213
+ "public_status": "public and non-gated",
1214
+ "validation_status": "pass",
1215
+ "total_weight_size": 18556689568
1216
+ }
1217
+ },
1218
+ {
1219
+ "model_id": "lumynax-infused-qwen3-text-gguf",
1220
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-text-gguf",
1221
+ "title": "LumynaX Infused Qwen3 Text GGUF",
1222
+ "family": "qwen",
1223
+ "runtime": "llama_cpp",
1224
+ "modalities": [
1225
+ "text"
1226
+ ],
1227
+ "context_tokens": 32768,
1228
+ "jurisdiction": "NZ",
1229
+ "residency": [
1230
+ "NZ"
1231
+ ],
1232
+ "license_id": "see_model_card",
1233
+ "quantization": "see_release_manifest",
1234
+ "primary_artifact": "lumynax-infused-qwen3-text-gguf-f16.gguf",
1235
+ "active_params_b": null,
1236
+ "total_params_b": null,
1237
+ "quality_rank": 3,
1238
+ "cost_rank": 10,
1239
+ "sovereignty_tier": 3,
1240
+ "supports_tools": false,
1241
+ "supports_json": true,
1242
+ "tags": [
1243
+ "general",
1244
+ "gguf",
1245
+ "lumynax",
1246
+ "qwen",
1247
+ "text"
1248
+ ],
1249
+ "metadata": {
1250
+ "hub_sha": "405002e7153a01f4fcc96d610f6af761de8c0574",
1251
+ "package_state": "base_weights_hydrated_text_gguf",
1252
+ "public_status": "public and non-gated",
1253
+ "validation_status": "pass",
1254
+ "total_weight_size": 37797343976
1255
+ }
1256
+ },
1257
+ {
1258
+ "model_id": "lumynax-infused-smollm-135m-gguf",
1259
+ "repo_id": "AbteeXAILab/lumynax-infused-smollm-135m-gguf",
1260
+ "title": "LumynaX Infused SmolLM 135M Instruct GGUF",
1261
+ "family": "smollm",
1262
+ "runtime": "llama_cpp",
1263
+ "modalities": [
1264
+ "text"
1265
+ ],
1266
+ "context_tokens": 8192,
1267
+ "jurisdiction": "NZ",
1268
+ "residency": [
1269
+ "NZ"
1270
+ ],
1271
+ "license_id": "see_model_card",
1272
+ "quantization": "see_release_manifest",
1273
+ "primary_artifact": "SmolLM-135M-Instruct.Q4_K_M.gguf",
1274
+ "active_params_b": null,
1275
+ "total_params_b": null,
1276
+ "quality_rank": 5,
1277
+ "cost_rank": 2,
1278
+ "sovereignty_tier": 3,
1279
+ "supports_tools": false,
1280
+ "supports_json": true,
1281
+ "tags": [
1282
+ "general",
1283
+ "gguf",
1284
+ "lumynax",
1285
+ "smollm",
1286
+ "text"
1287
+ ],
1288
+ "metadata": {
1289
+ "hub_sha": "192518901ec475229151f3ce654a866a47a2a6f3",
1290
+ "package_state": "prebuilt_gguf_release",
1291
+ "public_status": "public and non-gated",
1292
+ "validation_status": "pass",
1293
+ "total_weight_size": 105454208
1294
+ }
1295
+ },
1296
+ {
1297
+ "model_id": "lumynax-infused-smollm2-17b-gguf",
1298
+ "repo_id": "AbteeXAILab/lumynax-infused-smollm2-17b-gguf",
1299
+ "title": "LumynaX Infused SmolLM2 1.7B Instruct GGUF",
1300
+ "family": "smollm",
1301
+ "runtime": "llama_cpp",
1302
+ "modalities": [
1303
+ "text"
1304
+ ],
1305
+ "context_tokens": 8192,
1306
+ "jurisdiction": "NZ",
1307
+ "residency": [
1308
+ "NZ"
1309
+ ],
1310
+ "license_id": "see_model_card",
1311
+ "quantization": "see_release_manifest",
1312
+ "primary_artifact": "smollm2-1.7b-instruct-q4_k_m.gguf",
1313
+ "active_params_b": null,
1314
+ "total_params_b": 1.7,
1315
+ "quality_rank": 5,
1316
+ "cost_rank": 4,
1317
+ "sovereignty_tier": 3,
1318
+ "supports_tools": false,
1319
+ "supports_json": true,
1320
+ "tags": [
1321
+ "general",
1322
+ "gguf",
1323
+ "lumynax",
1324
+ "smollm",
1325
+ "text"
1326
+ ],
1327
+ "metadata": {
1328
+ "hub_sha": "b71d0ad33a3e8f2f1582ceba7520e086a665bf46",
1329
+ "package_state": "prebuilt_gguf_release",
1330
+ "public_status": "public and non-gated",
1331
+ "validation_status": "pass",
1332
+ "total_weight_size": 1055609536
1333
+ }
1334
+ },
1335
+ {
1336
+ "model_id": "lumynax-infused-smollm2-360m-gguf",
1337
+ "repo_id": "AbteeXAILab/lumynax-infused-smollm2-360m-gguf",
1338
+ "title": "LumynaX Infused SmolLM2 360M Instruct GGUF",
1339
+ "family": "smollm",
1340
+ "runtime": "llama_cpp",
1341
+ "modalities": [
1342
+ "text"
1343
+ ],
1344
+ "context_tokens": 8192,
1345
+ "jurisdiction": "NZ",
1346
+ "residency": [
1347
+ "NZ"
1348
+ ],
1349
+ "license_id": "see_model_card",
1350
+ "quantization": "see_release_manifest",
1351
+ "primary_artifact": "smollm2-360m-instruct-q8_0.gguf",
1352
+ "active_params_b": null,
1353
+ "total_params_b": null,
1354
+ "quality_rank": 5,
1355
+ "cost_rank": 2,
1356
+ "sovereignty_tier": 3,
1357
+ "supports_tools": false,
1358
+ "supports_json": true,
1359
+ "tags": [
1360
+ "general",
1361
+ "gguf",
1362
+ "lumynax",
1363
+ "smollm",
1364
+ "text"
1365
+ ],
1366
+ "metadata": {
1367
+ "hub_sha": "a808313b05ac18b70e2b4de03a0ddb238d545c74",
1368
+ "package_state": "prebuilt_gguf_release",
1369
+ "public_status": "public and non-gated",
1370
+ "validation_status": "pass",
1371
+ "total_weight_size": 386404992
1372
+ }
1373
+ },
1374
+ {
1375
+ "model_id": "lumynax-infused-smollm3-3b-gguf",
1376
+ "repo_id": "AbteeXAILab/lumynax-infused-smollm3-3b-gguf",
1377
+ "title": "LumynaX Infused SmolLM3 3B GGUF",
1378
+ "family": "smollm",
1379
+ "runtime": "llama_cpp",
1380
+ "modalities": [
1381
+ "text"
1382
+ ],
1383
+ "context_tokens": 8192,
1384
+ "jurisdiction": "NZ",
1385
+ "residency": [
1386
+ "NZ"
1387
+ ],
1388
+ "license_id": "see_model_card",
1389
+ "quantization": "see_release_manifest",
1390
+ "primary_artifact": "SmolLM3-Q4_K_M.gguf",
1391
+ "active_params_b": null,
1392
+ "total_params_b": 3.0,
1393
+ "quality_rank": 4,
1394
+ "cost_rank": 4,
1395
+ "sovereignty_tier": 3,
1396
+ "supports_tools": false,
1397
+ "supports_json": true,
1398
+ "tags": [
1399
+ "general",
1400
+ "gguf",
1401
+ "lumynax",
1402
+ "smollm",
1403
+ "text"
1404
+ ],
1405
+ "metadata": {
1406
+ "hub_sha": "3cbfc3ed26da900885f8135bfcbd4331a6c5b5b9",
1407
+ "package_state": "prebuilt_gguf_release",
1408
+ "public_status": "public and non-gated",
1409
+ "validation_status": "pass",
1410
+ "total_weight_size": 1915305312
1411
+ }
1412
+ },
1413
+ {
1414
+ "model_id": "lumynax-infused-zephyr-7b-beta-gguf",
1415
+ "repo_id": "AbteeXAILab/lumynax-infused-zephyr-7b-beta-gguf",
1416
+ "title": "LumynaX Infused Zephyr 7B Beta GGUF",
1417
+ "family": "lumynax",
1418
+ "runtime": "llama_cpp",
1419
+ "modalities": [
1420
+ "text"
1421
+ ],
1422
+ "context_tokens": 8192,
1423
+ "jurisdiction": "NZ",
1424
+ "residency": [
1425
+ "NZ"
1426
+ ],
1427
+ "license_id": "see_model_card",
1428
+ "quantization": "see_release_manifest",
1429
+ "primary_artifact": "zephyr-7b-beta.Q4_K_M.gguf",
1430
+ "active_params_b": null,
1431
+ "total_params_b": 7.0,
1432
+ "quality_rank": 3,
1433
+ "cost_rank": 6,
1434
+ "sovereignty_tier": 3,
1435
+ "supports_tools": false,
1436
+ "supports_json": true,
1437
+ "tags": [
1438
+ "general",
1439
+ "gguf",
1440
+ "lumynax",
1441
+ "text"
1442
+ ],
1443
+ "metadata": {
1444
+ "hub_sha": "790aa3f7411fbd5b6ae8af3eedbefaf5c23c5a60",
1445
+ "package_state": "prebuilt_gguf_release",
1446
+ "public_status": "public and non-gated",
1447
+ "validation_status": "pass",
1448
+ "total_weight_size": 4368438976
1449
+ }
1450
+ },
1451
+ {
1452
+ "model_id": "lumynax-moe-moonlight-16b-a3b-gguf",
1453
+ "repo_id": "AbteeXAILab/lumynax-moe-moonlight-16b-a3b-gguf",
1454
+ "title": "LumynaX MoE Moonlight 16B A3B GGUF",
1455
+ "family": "lumynax",
1456
+ "runtime": "llama_cpp",
1457
+ "modalities": [
1458
+ "text"
1459
+ ],
1460
+ "context_tokens": 8192,
1461
+ "jurisdiction": "NZ",
1462
+ "residency": [
1463
+ "NZ"
1464
+ ],
1465
+ "license_id": "see_model_card",
1466
+ "quantization": "see_release_manifest",
1467
+ "primary_artifact": "lumynax-moe-moonlight-16b-a3b-iq4_xs.gguf",
1468
+ "active_params_b": 3.0,
1469
+ "total_params_b": 16.0,
1470
+ "quality_rank": 3,
1471
+ "cost_rank": 6,
1472
+ "sovereignty_tier": 3,
1473
+ "supports_tools": false,
1474
+ "supports_json": true,
1475
+ "tags": [
1476
+ "general",
1477
+ "gguf",
1478
+ "lumynax",
1479
+ "moe",
1480
+ "text"
1481
+ ],
1482
+ "metadata": {
1483
+ "hub_sha": "88926e39e3730c2d2bfe00088404fce8217c1c74",
1484
+ "package_state": "prebuilt_gguf_release",
1485
+ "public_status": "public and non-gated",
1486
+ "validation_status": "pass",
1487
+ "total_weight_size": 8744947840
1488
+ }
1489
+ },
1490
+ {
1491
+ "model_id": "lumynax-moe-olmoe-1b-7b-gguf",
1492
+ "repo_id": "AbteeXAILab/lumynax-moe-olmoe-1b-7b-gguf",
1493
+ "title": "LumynaX MoE OLMoE 1B-7B Instruct GGUF",
1494
+ "family": "olmo",
1495
+ "runtime": "llama_cpp",
1496
+ "modalities": [
1497
+ "text"
1498
+ ],
1499
+ "context_tokens": 8192,
1500
+ "jurisdiction": "NZ",
1501
+ "residency": [
1502
+ "NZ"
1503
+ ],
1504
+ "license_id": "see_model_card",
1505
+ "quantization": "see_release_manifest",
1506
+ "primary_artifact": "olmoe-1b-7b-0924-instruct-q4_k_m.gguf",
1507
+ "active_params_b": null,
1508
+ "total_params_b": 1.0,
1509
+ "quality_rank": 3,
1510
+ "cost_rank": 6,
1511
+ "sovereignty_tier": 3,
1512
+ "supports_tools": false,
1513
+ "supports_json": true,
1514
+ "tags": [
1515
+ "general",
1516
+ "gguf",
1517
+ "lumynax",
1518
+ "moe",
1519
+ "text"
1520
+ ],
1521
+ "metadata": {
1522
+ "hub_sha": "4515dabcc14be52616348757c7195a8bb2e490f8",
1523
+ "package_state": "prebuilt_gguf_release",
1524
+ "public_status": "public and non-gated",
1525
+ "validation_status": "pass",
1526
+ "total_weight_size": 4213512672
1527
+ }
1528
+ },
1529
+ {
1530
+ "model_id": "lumynax-multimodal-glm46v-flash",
1531
+ "repo_id": "AbteeXAILab/lumynax-multimodal-glm46v-flash",
1532
+ "title": "LumynaX Multimodal GLM 4.6V Flash",
1533
+ "family": "lumynax",
1534
+ "runtime": "llama_cpp_multimodal",
1535
+ "modalities": [
1536
+ "text",
1537
+ "image"
1538
+ ],
1539
+ "context_tokens": 4096,
1540
+ "jurisdiction": "NZ",
1541
+ "residency": [
1542
+ "NZ"
1543
+ ],
1544
+ "license_id": "see_model_card",
1545
+ "quantization": "see_release_manifest",
1546
+ "primary_artifact": "lumynax-multimodal-glm46v-flash-ud-iq2_m.gguf",
1547
+ "active_params_b": null,
1548
+ "total_params_b": null,
1549
+ "quality_rank": 3,
1550
+ "cost_rank": 6,
1551
+ "sovereignty_tier": 2,
1552
+ "supports_tools": false,
1553
+ "supports_json": true,
1554
+ "tags": [
1555
+ "image",
1556
+ "lumynax",
1557
+ "multimodal",
1558
+ "text"
1559
+ ],
1560
+ "metadata": {
1561
+ "hub_sha": "3f0a751fedde7cd6a3b8a083b7bdf128c8ca3ccd",
1562
+ "package_state": "prebuilt_gguf_release",
1563
+ "public_status": "public and non-gated",
1564
+ "validation_status": "pass",
1565
+ "total_weight_size": 5778988768
1566
+ }
1567
+ },
1568
+ {
1569
+ "model_id": "lumynax-multimodal-kimi-vl-a3b-thinking",
1570
+ "repo_id": "AbteeXAILab/lumynax-multimodal-kimi-vl-a3b-thinking",
1571
+ "title": "LumynaX Multimodal Kimi VL A3B Thinking",
1572
+ "family": "kimi",
1573
+ "runtime": "llama_cpp_multimodal",
1574
+ "modalities": [
1575
+ "text",
1576
+ "image"
1577
+ ],
1578
+ "context_tokens": 4096,
1579
+ "jurisdiction": "NZ",
1580
+ "residency": [
1581
+ "NZ"
1582
+ ],
1583
+ "license_id": "see_model_card",
1584
+ "quantization": "see_release_manifest",
1585
+ "primary_artifact": "lumynax-multimodal-kimi-vl-a3b-thinking-q4_k_m.gguf",
1586
+ "active_params_b": 3.0,
1587
+ "total_params_b": 3.0,
1588
+ "quality_rank": 3,
1589
+ "cost_rank": 8,
1590
+ "sovereignty_tier": 2,
1591
+ "supports_tools": false,
1592
+ "supports_json": true,
1593
+ "tags": [
1594
+ "image",
1595
+ "kimi",
1596
+ "lumynax",
1597
+ "multimodal",
1598
+ "text"
1599
+ ],
1600
+ "metadata": {
1601
+ "hub_sha": "460182aeb56feb94262a59e274be38f3b9638188",
1602
+ "package_state": "prebuilt_gguf_release",
1603
+ "public_status": "public and non-gated",
1604
+ "validation_status": "pass",
1605
+ "total_weight_size": 11158846304
1606
+ }
1607
+ },
1608
+ {
1609
+ "model_id": "lumynax-nz-3b",
1610
+ "repo_id": "AbteeXAILab/lumynax-nz-3b",
1611
+ "title": "LumynaX NZ 3B V1",
1612
+ "family": "lumynax",
1613
+ "runtime": "transformers",
1614
+ "modalities": [
1615
+ "text"
1616
+ ],
1617
+ "context_tokens": 4096,
1618
+ "jurisdiction": "NZ",
1619
+ "residency": [
1620
+ "NZ"
1621
+ ],
1622
+ "license_id": "see_model_card",
1623
+ "quantization": "see_release_manifest",
1624
+ "primary_artifact": "merged_model/model-00001-of-00055.safetensors",
1625
+ "active_params_b": null,
1626
+ "total_params_b": 3.0,
1627
+ "quality_rank": 3,
1628
+ "cost_rank": 8,
1629
+ "sovereignty_tier": 2,
1630
+ "supports_tools": false,
1631
+ "supports_json": true,
1632
+ "tags": [
1633
+ "general",
1634
+ "lumynax",
1635
+ "text"
1636
+ ],
1637
+ "metadata": {
1638
+ "hub_sha": "190ba7e1a81e9e980a8cf44d4a9d53dedca6322c",
1639
+ "package_state": "standalone_dense_model",
1640
+ "public_status": "public and non-gated",
1641
+ "validation_status": "pass",
1642
+ "total_weight_size": 12343804840
1643
+ }
1644
+ },
1645
+ {
1646
+ "model_id": "lumynax-nz-qwen25-coder-3b-gguf",
1647
+ "repo_id": "AbteeXAILab/lumynax-nz-qwen25-coder-3b-gguf",
1648
+ "title": "LumynaX NZ Qwen2.5 Coder 3B GGUF",
1649
+ "family": "qwen",
1650
+ "runtime": "llama_cpp",
1651
+ "modalities": [
1652
+ "text"
1653
+ ],
1654
+ "context_tokens": 32768,
1655
+ "jurisdiction": "NZ",
1656
+ "residency": [
1657
+ "NZ"
1658
+ ],
1659
+ "license_id": "see_model_card",
1660
+ "quantization": "see_release_manifest",
1661
+ "primary_artifact": "lumynax-nz-qwen25-coder-3b-q4_k_m.gguf",
1662
+ "active_params_b": null,
1663
+ "total_params_b": 3.0,
1664
+ "quality_rank": 4,
1665
+ "cost_rank": 4,
1666
+ "sovereignty_tier": 3,
1667
+ "supports_tools": true,
1668
+ "supports_json": true,
1669
+ "tags": [
1670
+ "coder",
1671
+ "gguf",
1672
+ "lumynax",
1673
+ "qwen",
1674
+ "text"
1675
+ ],
1676
+ "metadata": {
1677
+ "hub_sha": "b6603695131d11f937f8bd06b77985f1affd8398",
1678
+ "package_state": "prebuilt_gguf_release",
1679
+ "public_status": "public and non-gated",
1680
+ "validation_status": "pass",
1681
+ "total_weight_size": 2104932800
1682
+ }
1683
+ },
1684
+ {
1685
+ "model_id": "lumynax-reasoning-deepseek-distill-text-gguf",
1686
+ "repo_id": "AbteeXAILab/lumynax-reasoning-deepseek-distill-text-gguf",
1687
+ "title": "LumynaX Reasoning DeepSeek Distill Text GGUF",
1688
+ "family": "deepseek",
1689
+ "runtime": "llama_cpp",
1690
+ "modalities": [
1691
+ "text"
1692
+ ],
1693
+ "context_tokens": 8192,
1694
+ "jurisdiction": "NZ",
1695
+ "residency": [
1696
+ "NZ"
1697
+ ],
1698
+ "license_id": "see_model_card",
1699
+ "quantization": "see_release_manifest",
1700
+ "primary_artifact": "lumynax-reasoning-deepseek-distill-text-gguf-f16.gguf",
1701
+ "active_params_b": null,
1702
+ "total_params_b": null,
1703
+ "quality_rank": 2,
1704
+ "cost_rank": 10,
1705
+ "sovereignty_tier": 3,
1706
+ "supports_tools": true,
1707
+ "supports_json": true,
1708
+ "tags": [
1709
+ "deepseek",
1710
+ "gguf",
1711
+ "lumynax",
1712
+ "reasoning",
1713
+ "text"
1714
+ ],
1715
+ "metadata": {
1716
+ "hub_sha": "ff5915ca508ffd3b6d12121a2682f8d5ff8cb7be",
1717
+ "package_state": "base_weights_hydrated_text_gguf",
1718
+ "public_status": "public and non-gated",
1719
+ "validation_status": "pass",
1720
+ "total_weight_size": 38535825664
1721
+ }
1722
+ },
1723
+ {
1724
+ "model_id": "lumynax-reasoning-deepseek-r1-qwen-15b-gguf",
1725
+ "repo_id": "AbteeXAILab/lumynax-reasoning-deepseek-r1-qwen-15b-gguf",
1726
+ "title": "LumynaX Reasoning DeepSeek R1 Distill Qwen 1.5B GGUF",
1727
+ "family": "qwen",
1728
+ "runtime": "llama_cpp",
1729
+ "modalities": [
1730
+ "text"
1731
+ ],
1732
+ "context_tokens": 8192,
1733
+ "jurisdiction": "NZ",
1734
+ "residency": [
1735
+ "NZ"
1736
+ ],
1737
+ "license_id": "see_model_card",
1738
+ "quantization": "see_release_manifest",
1739
+ "primary_artifact": "DeepSeek-R1-Distill-Qwen-1.5B-Q4_K_M.gguf",
1740
+ "active_params_b": null,
1741
+ "total_params_b": 1.5,
1742
+ "quality_rank": 5,
1743
+ "cost_rank": 4,
1744
+ "sovereignty_tier": 3,
1745
+ "supports_tools": true,
1746
+ "supports_json": true,
1747
+ "tags": [
1748
+ "deepseek",
1749
+ "gguf",
1750
+ "lumynax",
1751
+ "qwen",
1752
+ "reasoning",
1753
+ "text"
1754
+ ],
1755
+ "metadata": {
1756
+ "hub_sha": "cb2a747d711fb83c6197855046e59c56828dbbaa",
1757
+ "package_state": "prebuilt_gguf_release",
1758
+ "public_status": "public and non-gated",
1759
+ "validation_status": "pass",
1760
+ "total_weight_size": 1117321312
1761
+ }
1762
+ },
1763
+ {
1764
+ "model_id": "lumynax-reasoning-deepseek-r1-qwen-7b-gguf",
1765
+ "repo_id": "AbteeXAILab/lumynax-reasoning-deepseek-r1-qwen-7b-gguf",
1766
+ "title": "LumynaX Reasoning DeepSeek R1 Distill Qwen 7B GGUF",
1767
+ "family": "qwen",
1768
+ "runtime": "llama_cpp",
1769
+ "modalities": [
1770
+ "text"
1771
+ ],
1772
+ "context_tokens": 8192,
1773
+ "jurisdiction": "NZ",
1774
+ "residency": [
1775
+ "NZ"
1776
+ ],
1777
+ "license_id": "see_model_card",
1778
+ "quantization": "see_release_manifest",
1779
+ "primary_artifact": "DeepSeek-R1-Distill-Qwen-7B-Q4_K_M.gguf",
1780
+ "active_params_b": null,
1781
+ "total_params_b": 7.0,
1782
+ "quality_rank": 3,
1783
+ "cost_rank": 6,
1784
+ "sovereignty_tier": 3,
1785
+ "supports_tools": true,
1786
+ "supports_json": true,
1787
+ "tags": [
1788
+ "deepseek",
1789
+ "gguf",
1790
+ "lumynax",
1791
+ "qwen",
1792
+ "reasoning",
1793
+ "text"
1794
+ ],
1795
+ "metadata": {
1796
+ "hub_sha": "02dbc4451a0a26e9760f740418cf4b9796ef2aa4",
1797
+ "package_state": "prebuilt_gguf_release",
1798
+ "public_status": "public and non-gated",
1799
+ "validation_status": "pass",
1800
+ "total_weight_size": 4683073248
1801
+ }
1802
+ },
1803
+ {
1804
+ "model_id": "lumynax-reasoning-gpt-oss-20b-gguf",
1805
+ "repo_id": "AbteeXAILab/lumynax-reasoning-gpt-oss-20b-gguf",
1806
+ "title": "LumynaX Reasoning GPT-OSS 20B GGUF",
1807
+ "family": "lumynax",
1808
+ "runtime": "llama_cpp",
1809
+ "modalities": [
1810
+ "text"
1811
+ ],
1812
+ "context_tokens": 8192,
1813
+ "jurisdiction": "NZ",
1814
+ "residency": [
1815
+ "NZ"
1816
+ ],
1817
+ "license_id": "see_model_card",
1818
+ "quantization": "see_release_manifest",
1819
+ "primary_artifact": "lumynax-reasoning-gpt-oss-20b-mxfp4.gguf",
1820
+ "active_params_b": null,
1821
+ "total_params_b": 20.0,
1822
+ "quality_rank": 1,
1823
+ "cost_rank": 8,
1824
+ "sovereignty_tier": 3,
1825
+ "supports_tools": true,
1826
+ "supports_json": true,
1827
+ "tags": [
1828
+ "gguf",
1829
+ "lumynax",
1830
+ "reasoning",
1831
+ "text"
1832
+ ],
1833
+ "metadata": {
1834
+ "hub_sha": "3f07992371177a312240df950d91ae1b2ff57714",
1835
+ "package_state": "prebuilt_gguf_release",
1836
+ "public_status": "public and non-gated",
1837
+ "validation_status": "pass",
1838
+ "total_weight_size": 12109566560
1839
+ }
1840
+ },
1841
+ {
1842
+ "model_id": "lumynax-reasoning-phi4-mini-gguf",
1843
+ "repo_id": "AbteeXAILab/lumynax-reasoning-phi4-mini-gguf",
1844
+ "title": "LumynaX Reasoning Phi-4 Mini GGUF",
1845
+ "family": "phi",
1846
+ "runtime": "llama_cpp",
1847
+ "modalities": [
1848
+ "text"
1849
+ ],
1850
+ "context_tokens": 8192,
1851
+ "jurisdiction": "NZ",
1852
+ "residency": [
1853
+ "NZ"
1854
+ ],
1855
+ "license_id": "see_model_card",
1856
+ "quantization": "see_release_manifest",
1857
+ "primary_artifact": "Phi-4-mini-reasoning-Q4_K_M.gguf",
1858
+ "active_params_b": null,
1859
+ "total_params_b": null,
1860
+ "quality_rank": 2,
1861
+ "cost_rank": 4,
1862
+ "sovereignty_tier": 3,
1863
+ "supports_tools": true,
1864
+ "supports_json": true,
1865
+ "tags": [
1866
+ "gguf",
1867
+ "lumynax",
1868
+ "phi",
1869
+ "reasoning",
1870
+ "text"
1871
+ ],
1872
+ "metadata": {
1873
+ "hub_sha": "ef04425cd19f96de197b2418a16aca6e5c868f45",
1874
+ "package_state": "prebuilt_gguf_release",
1875
+ "public_status": "public and non-gated",
1876
+ "validation_status": "pass",
1877
+ "total_weight_size": 2491875232
1878
+ }
1879
+ },
1880
+ {
1881
+ "model_id": "lumynax-tiny",
1882
+ "repo_id": "AbteeXAILab/lumynax-tiny",
1883
+ "title": "LumynaX Tiny Seed V1",
1884
+ "family": "lumynax",
1885
+ "runtime": "transformers",
1886
+ "modalities": [
1887
+ "text"
1888
+ ],
1889
+ "context_tokens": 4096,
1890
+ "jurisdiction": "NZ",
1891
+ "residency": [
1892
+ "NZ"
1893
+ ],
1894
+ "license_id": "see_model_card",
1895
+ "quantization": "see_release_manifest",
1896
+ "primary_artifact": "merged_model/model.safetensors",
1897
+ "active_params_b": null,
1898
+ "total_params_b": null,
1899
+ "quality_rank": 5,
1900
+ "cost_rank": 2,
1901
+ "sovereignty_tier": 2,
1902
+ "supports_tools": false,
1903
+ "supports_json": true,
1904
+ "tags": [
1905
+ "general",
1906
+ "lumynax",
1907
+ "text"
1908
+ ],
1909
+ "metadata": {
1910
+ "hub_sha": "c4ccf84ef0b646fbc61c83f24117aaea95225dd6",
1911
+ "package_state": "standalone_dense_model",
1912
+ "public_status": "public and non-gated",
1913
+ "validation_status": "pass",
1914
+ "total_weight_size": 4292528
1915
+ }
1916
+ },
1917
+ {
1918
+ "model_id": "lumynax-tiny-qwen25-05b-gguf",
1919
+ "repo_id": "AbteeXAILab/lumynax-tiny-qwen25-05b-gguf",
1920
+ "title": "LumynaX Tiny Qwen2.5 0.5B GGUF",
1921
+ "family": "qwen",
1922
+ "runtime": "llama_cpp",
1923
+ "modalities": [
1924
+ "text"
1925
+ ],
1926
+ "context_tokens": 32768,
1927
+ "jurisdiction": "NZ",
1928
+ "residency": [
1929
+ "NZ"
1930
+ ],
1931
+ "license_id": "see_model_card",
1932
+ "quantization": "see_release_manifest",
1933
+ "primary_artifact": "lumynax-tiny-qwen25-05b-q4_k_m.gguf",
1934
+ "active_params_b": null,
1935
+ "total_params_b": 0.5,
1936
+ "quality_rank": 5,
1937
+ "cost_rank": 2,
1938
+ "sovereignty_tier": 3,
1939
+ "supports_tools": false,
1940
+ "supports_json": true,
1941
+ "tags": [
1942
+ "general",
1943
+ "gguf",
1944
+ "lumynax",
1945
+ "qwen",
1946
+ "text"
1947
+ ],
1948
+ "metadata": {
1949
+ "hub_sha": "01266863890302b1d1f42bddfda1ff7146386359",
1950
+ "package_state": "prebuilt_gguf_release",
1951
+ "public_status": "public and non-gated",
1952
+ "validation_status": "pass",
1953
+ "total_weight_size": 491400032
1954
+ }
1955
+ },
1956
+ {
1957
+ "model_id": "lumynax-frontier-qwen3-235b-a22b-instruct",
1958
+ "repo_id": "AbteeXAILab/lumynax-frontier-qwen3-235b-a22b-instruct",
1959
+ "title": "LumynaX Frontier Qwen3 235B A22B Instruct",
1960
+ "family": "qwen",
1961
+ "runtime": "transformers",
1962
+ "modalities": [
1963
+ "text"
1964
+ ],
1965
+ "context_tokens": 262144,
1966
+ "jurisdiction": "NZ",
1967
+ "residency": [
1968
+ "NZ",
1969
+ "AU",
1970
+ "global"
1971
+ ],
1972
+ "license_id": "apache-2.0",
1973
+ "quantization": "bf16 / fp8 / Q4_K_M (community GGUF)",
1974
+ "primary_artifact": "model.safetensors (sharded)",
1975
+ "active_params_b": 22,
1976
+ "total_params_b": 235,
1977
+ "quality_rank": 1,
1978
+ "cost_rank": 5,
1979
+ "sovereignty_tier": 2,
1980
+ "supports_tools": true,
1981
+ "supports_json": true,
1982
+ "tags": [
1983
+ "frontier",
1984
+ "moe",
1985
+ "reasoning",
1986
+ "qwen3",
1987
+ "tools",
1988
+ "json",
1989
+ "long-context"
1990
+ ],
1991
+ "metadata": {
1992
+ "upstream_repo": "Qwen/Qwen3-235B-A22B-Instruct-2507",
1993
+ "release_version": "v0.1.0",
1994
+ "package_state": "scaffold_pulls_upstream",
1995
+ "public_status": "public and non-gated",
1996
+ "validation_status": "scaffold_verified"
1997
+ }
1998
+ },
1999
+ {
2000
+ "model_id": "lumynax-frontier-minimax-m2-230b",
2001
+ "repo_id": "AbteeXAILab/lumynax-frontier-minimax-m2-230b",
2002
+ "title": "LumynaX Frontier MiniMax M2 230B Agentic",
2003
+ "family": "minimax",
2004
+ "runtime": "transformers",
2005
+ "modalities": [
2006
+ "text"
2007
+ ],
2008
+ "context_tokens": 204800,
2009
+ "jurisdiction": "NZ",
2010
+ "residency": [
2011
+ "NZ",
2012
+ "AU",
2013
+ "global"
2014
+ ],
2015
+ "license_id": "other",
2016
+ "quantization": "bf16 / Q4_K_M (community GGUF)",
2017
+ "primary_artifact": "model.safetensors (sharded)",
2018
+ "active_params_b": 10,
2019
+ "total_params_b": 230,
2020
+ "quality_rank": 1,
2021
+ "cost_rank": 5,
2022
+ "sovereignty_tier": 2,
2023
+ "supports_tools": true,
2024
+ "supports_json": true,
2025
+ "tags": [
2026
+ "frontier",
2027
+ "moe",
2028
+ "agentic",
2029
+ "minimax",
2030
+ "tools",
2031
+ "json"
2032
+ ],
2033
+ "metadata": {
2034
+ "upstream_repo": "MiniMaxAI/MiniMax-M2",
2035
+ "release_version": "v0.1.0",
2036
+ "package_state": "scaffold_pulls_upstream",
2037
+ "public_status": "public and non-gated",
2038
+ "validation_status": "scaffold_verified"
2039
+ }
2040
+ },
2041
+ {
2042
+ "model_id": "lumynax-frontier-mixtral-8x22b-instruct-gguf",
2043
+ "repo_id": "AbteeXAILab/lumynax-frontier-mixtral-8x22b-instruct-gguf",
2044
+ "title": "LumynaX Frontier Mixtral 8x22B Instruct GGUF",
2045
+ "family": "mistral",
2046
+ "runtime": "llama_cpp",
2047
+ "modalities": [
2048
+ "text"
2049
+ ],
2050
+ "context_tokens": 65536,
2051
+ "jurisdiction": "NZ",
2052
+ "residency": [
2053
+ "NZ"
2054
+ ],
2055
+ "license_id": "apache-2.0",
2056
+ "quantization": "Q4_K_M (default) \u00b7 Q5_K_M \u00b7 Q8_0",
2057
+ "primary_artifact": "Mixtral-8x22B-Instruct-v0.1.Q4_K_M.gguf",
2058
+ "active_params_b": 39,
2059
+ "total_params_b": 141,
2060
+ "quality_rank": 2,
2061
+ "cost_rank": 4,
2062
+ "sovereignty_tier": 3,
2063
+ "supports_tools": true,
2064
+ "supports_json": true,
2065
+ "tags": [
2066
+ "frontier",
2067
+ "moe",
2068
+ "mixtral",
2069
+ "gguf",
2070
+ "llama-cpp",
2071
+ "tools"
2072
+ ],
2073
+ "metadata": {
2074
+ "upstream_repo": "mistralai/Mixtral-8x22B-Instruct-v0.1",
2075
+ "release_version": "v0.1.0",
2076
+ "package_state": "scaffold_pulls_upstream_gguf",
2077
+ "public_status": "public and non-gated",
2078
+ "validation_status": "scaffold_verified"
2079
+ }
2080
+ },
2081
+ {
2082
+ "model_id": "lumynax-frontier-dbrx-instruct-132b-gguf",
2083
+ "repo_id": "AbteeXAILab/lumynax-frontier-dbrx-instruct-132b-gguf",
2084
+ "title": "LumynaX Frontier DBRX Instruct 132B GGUF",
2085
+ "family": "dbrx",
2086
+ "runtime": "llama_cpp",
2087
+ "modalities": [
2088
+ "text"
2089
+ ],
2090
+ "context_tokens": 32768,
2091
+ "jurisdiction": "NZ",
2092
+ "residency": [
2093
+ "NZ"
2094
+ ],
2095
+ "license_id": "other",
2096
+ "quantization": "Q4_K_M (default) \u00b7 Q5_K_M \u00b7 Q8_0",
2097
+ "primary_artifact": "dbrx-instruct.Q4_K_M.gguf",
2098
+ "active_params_b": 36,
2099
+ "total_params_b": 132,
2100
+ "quality_rank": 2,
2101
+ "cost_rank": 4,
2102
+ "sovereignty_tier": 3,
2103
+ "supports_tools": true,
2104
+ "supports_json": true,
2105
+ "tags": [
2106
+ "frontier",
2107
+ "moe",
2108
+ "dbrx",
2109
+ "databricks",
2110
+ "gguf",
2111
+ "llama-cpp"
2112
+ ],
2113
+ "metadata": {
2114
+ "upstream_repo": "databricks/dbrx-instruct",
2115
+ "release_version": "v0.1.0",
2116
+ "package_state": "scaffold_pulls_upstream_gguf",
2117
+ "public_status": "public and non-gated",
2118
+ "validation_status": "scaffold_verified"
2119
+ }
2120
+ },
2121
+ {
2122
+ "model_id": "lumynax-multimodal-qwen25-vl-72b-instruct-gguf",
2123
+ "repo_id": "AbteeXAILab/lumynax-multimodal-qwen25-vl-72b-instruct-gguf",
2124
+ "title": "LumynaX Multimodal Qwen2.5 VL 72B Instruct GGUF",
2125
+ "family": "qwen",
2126
+ "runtime": "llama_cpp_multimodal",
2127
+ "modalities": [
2128
+ "text",
2129
+ "vision"
2130
+ ],
2131
+ "context_tokens": 131072,
2132
+ "jurisdiction": "NZ",
2133
+ "residency": [
2134
+ "NZ"
2135
+ ],
2136
+ "license_id": "other",
2137
+ "quantization": "Q4_K_M (default) \u00b7 Q5_K_M \u00b7 Q8_0",
2138
+ "primary_artifact": "Qwen2.5-VL-72B-Instruct-Q4_K_M.gguf",
2139
+ "active_params_b": null,
2140
+ "total_params_b": 72,
2141
+ "quality_rank": 2,
2142
+ "cost_rank": 4,
2143
+ "sovereignty_tier": 3,
2144
+ "supports_tools": true,
2145
+ "supports_json": true,
2146
+ "tags": [
2147
+ "multimodal",
2148
+ "vision",
2149
+ "qwen",
2150
+ "gguf",
2151
+ "llama-cpp",
2152
+ "image-text-to-text"
2153
+ ],
2154
+ "metadata": {
2155
+ "upstream_repo": "Qwen/Qwen2.5-VL-72B-Instruct",
2156
+ "release_version": "v0.1.0",
2157
+ "package_state": "scaffold_pulls_upstream_gguf",
2158
+ "public_status": "public and non-gated",
2159
+ "validation_status": "scaffold_verified"
2160
+ }
2161
+ },
2162
+ {
2163
+ "model_id": "lumynax-multimodal-pixtral-large-124b",
2164
+ "repo_id": "AbteeXAILab/lumynax-multimodal-pixtral-large-124b",
2165
+ "title": "LumynaX Multimodal Pixtral Large 124B",
2166
+ "family": "mistral",
2167
+ "runtime": "transformers_multimodal",
2168
+ "modalities": [
2169
+ "text",
2170
+ "vision"
2171
+ ],
2172
+ "context_tokens": 131072,
2173
+ "jurisdiction": "NZ",
2174
+ "residency": [
2175
+ "NZ",
2176
+ "AU"
2177
+ ],
2178
+ "license_id": "other",
2179
+ "quantization": "bf16 / fp8",
2180
+ "primary_artifact": "model.safetensors (sharded)",
2181
+ "active_params_b": null,
2182
+ "total_params_b": 124,
2183
+ "quality_rank": 2,
2184
+ "cost_rank": 5,
2185
+ "sovereignty_tier": 2,
2186
+ "supports_tools": true,
2187
+ "supports_json": true,
2188
+ "tags": [
2189
+ "multimodal",
2190
+ "vision",
2191
+ "pixtral",
2192
+ "mistral",
2193
+ "image-text-to-text"
2194
+ ],
2195
+ "metadata": {
2196
+ "upstream_repo": "mistralai/Pixtral-Large-Instruct-2411",
2197
+ "release_version": "v0.1.0",
2198
+ "package_state": "scaffold_pulls_upstream",
2199
+ "public_status": "public (Mistral research licence \u2014 non-commercial use)",
2200
+ "validation_status": "scaffold_verified"
2201
+ }
2202
+ },
2203
+ {
2204
+ "model_id": "lumynax-reasoning-glm46-355b-moe",
2205
+ "repo_id": "AbteeXAILab/lumynax-reasoning-glm46-355b-moe",
2206
+ "title": "LumynaX Reasoning GLM-4.6 355B MoE",
2207
+ "family": "glm",
2208
+ "runtime": "transformers",
2209
+ "modalities": [
2210
+ "text"
2211
+ ],
2212
+ "context_tokens": 204800,
2213
+ "jurisdiction": "NZ",
2214
+ "residency": [
2215
+ "NZ",
2216
+ "AU",
2217
+ "global"
2218
+ ],
2219
+ "license_id": "mit",
2220
+ "quantization": "bf16 / fp8 / Q4_K_M (community)",
2221
+ "primary_artifact": "model.safetensors (sharded)",
2222
+ "active_params_b": 32,
2223
+ "total_params_b": 355,
2224
+ "quality_rank": 1,
2225
+ "cost_rank": 5,
2226
+ "sovereignty_tier": 2,
2227
+ "supports_tools": true,
2228
+ "supports_json": true,
2229
+ "tags": [
2230
+ "frontier",
2231
+ "reasoning",
2232
+ "moe",
2233
+ "glm",
2234
+ "tools",
2235
+ "long-context"
2236
+ ],
2237
+ "metadata": {
2238
+ "upstream_repo": "zai-org/GLM-4.6",
2239
+ "release_version": "v0.1.0",
2240
+ "package_state": "scaffold_pulls_upstream",
2241
+ "public_status": "public and non-gated",
2242
+ "validation_status": "scaffold_verified"
2243
+ }
2244
+ },
2245
+ {
2246
+ "model_id": "lumynax-multimodal-internvl3-78b-instruct",
2247
+ "repo_id": "AbteeXAILab/lumynax-multimodal-internvl3-78b-instruct",
2248
+ "title": "LumynaX Multimodal InternVL3 78B Instruct",
2249
+ "family": "internvl",
2250
+ "runtime": "transformers_multimodal",
2251
+ "modalities": [
2252
+ "text",
2253
+ "vision"
2254
+ ],
2255
+ "context_tokens": 32768,
2256
+ "jurisdiction": "NZ",
2257
+ "residency": [
2258
+ "NZ",
2259
+ "AU",
2260
+ "global"
2261
+ ],
2262
+ "license_id": "mit",
2263
+ "quantization": "bf16 (safetensors mirror) \u2014 community GGUF when available",
2264
+ "primary_artifact": "model.safetensors (33 shards)",
2265
+ "active_params_b": null,
2266
+ "total_params_b": 78,
2267
+ "quality_rank": 2,
2268
+ "cost_rank": 4,
2269
+ "sovereignty_tier": 2,
2270
+ "supports_tools": true,
2271
+ "supports_json": true,
2272
+ "tags": [
2273
+ "multimodal",
2274
+ "vision",
2275
+ "internvl",
2276
+ "opengvlab",
2277
+ "image-text-to-text"
2278
+ ],
2279
+ "metadata": {
2280
+ "upstream_repo": "OpenGVLab/InternVL3-78B-Instruct",
2281
+ "release_version": "v0.1.0",
2282
+ "package_state": "weights_mirrored_safetensors",
2283
+ "public_status": "public and non-gated",
2284
+ "validation_status": "scaffold_verified"
2285
+ }
2286
+ },
2287
+ {
2288
+ "model_id": "lumynax-speech-whisper-large-v3-turbo",
2289
+ "repo_id": "AbteeXAILab/lumynax-speech-whisper-large-v3-turbo",
2290
+ "title": "LumynaX Speech Whisper Large v3 Turbo",
2291
+ "family": "whisper",
2292
+ "runtime": "transformers",
2293
+ "modalities": [
2294
+ "audio"
2295
+ ],
2296
+ "context_tokens": 30,
2297
+ "jurisdiction": "NZ",
2298
+ "residency": [
2299
+ "NZ",
2300
+ "AU",
2301
+ "global"
2302
+ ],
2303
+ "license_id": "mit",
2304
+ "quantization": "fp16 safetensors",
2305
+ "primary_artifact": "model.safetensors",
2306
+ "active_params_b": null,
2307
+ "total_params_b": 0.8,
2308
+ "quality_rank": 1,
2309
+ "cost_rank": 2,
2310
+ "sovereignty_tier": 3,
2311
+ "supports_tools": false,
2312
+ "supports_json": false,
2313
+ "tags": [
2314
+ "asr",
2315
+ "speech",
2316
+ "whisper",
2317
+ "audio"
2318
+ ],
2319
+ "metadata": {
2320
+ "upstream_repo": "openai/whisper-large-v3-turbo",
2321
+ "release_version": "v0.1.0",
2322
+ "package_state": "weights_mirrored",
2323
+ "public_status": "public and non-gated",
2324
+ "validation_status": "scaffold_verified"
2325
+ }
2326
+ },
2327
+ {
2328
+ "model_id": "lumynax-speech-kokoro-82m-tts",
2329
+ "repo_id": "AbteeXAILab/lumynax-speech-kokoro-82m-tts",
2330
+ "title": "LumynaX Speech Kokoro 82M TTS",
2331
+ "family": "kokoro",
2332
+ "runtime": "transformers",
2333
+ "modalities": [
2334
+ "text",
2335
+ "audio"
2336
+ ],
2337
+ "context_tokens": 510,
2338
+ "jurisdiction": "NZ",
2339
+ "residency": [
2340
+ "NZ",
2341
+ "AU",
2342
+ "global"
2343
+ ],
2344
+ "license_id": "apache-2.0",
2345
+ "quantization": "fp32 (small)",
2346
+ "primary_artifact": "kokoro-v1_0.pth",
2347
+ "active_params_b": null,
2348
+ "total_params_b": 0.082,
2349
+ "quality_rank": 1,
2350
+ "cost_rank": 1,
2351
+ "sovereignty_tier": 3,
2352
+ "supports_tools": false,
2353
+ "supports_json": false,
2354
+ "tags": [
2355
+ "tts",
2356
+ "speech",
2357
+ "kokoro",
2358
+ "audio"
2359
+ ],
2360
+ "metadata": {
2361
+ "upstream_repo": "hexgrad/Kokoro-82M",
2362
+ "release_version": "v0.1.0",
2363
+ "package_state": "weights_mirrored",
2364
+ "public_status": "public and non-gated",
2365
+ "validation_status": "scaffold_verified"
2366
+ }
2367
+ },
2368
+ {
2369
+ "model_id": "lumynax-reranker-bge-v2-m3",
2370
+ "repo_id": "AbteeXAILab/lumynax-reranker-bge-v2-m3",
2371
+ "title": "LumynaX Reranker BGE v2 M3",
2372
+ "family": "bge",
2373
+ "runtime": "transformers",
2374
+ "modalities": [
2375
+ "text"
2376
+ ],
2377
+ "context_tokens": 8192,
2378
+ "jurisdiction": "NZ",
2379
+ "residency": [
2380
+ "NZ",
2381
+ "AU",
2382
+ "global"
2383
+ ],
2384
+ "license_id": "mit",
2385
+ "quantization": "fp32 safetensors",
2386
+ "primary_artifact": "model.safetensors",
2387
+ "active_params_b": null,
2388
+ "total_params_b": 0.568,
2389
+ "quality_rank": 1,
2390
+ "cost_rank": 1,
2391
+ "sovereignty_tier": 3,
2392
+ "supports_tools": false,
2393
+ "supports_json": true,
2394
+ "tags": [
2395
+ "reranker",
2396
+ "retrieval",
2397
+ "bge",
2398
+ "embedding-companion"
2399
+ ],
2400
+ "metadata": {
2401
+ "upstream_repo": "BAAI/bge-reranker-v2-m3",
2402
+ "release_version": "v0.1.0",
2403
+ "package_state": "weights_mirrored",
2404
+ "public_status": "public and non-gated",
2405
+ "validation_status": "scaffold_verified"
2406
+ }
2407
+ },
2408
+ {
2409
+ "model_id": "lumynax-guard-text-moderation",
2410
+ "repo_id": "AbteeXAILab/lumynax-guard-text-moderation",
2411
+ "title": "LumynaX Guard Text Moderation",
2412
+ "family": "roberta",
2413
+ "runtime": "transformers",
2414
+ "modalities": [
2415
+ "text"
2416
+ ],
2417
+ "context_tokens": 512,
2418
+ "jurisdiction": "NZ",
2419
+ "residency": [
2420
+ "NZ",
2421
+ "AU",
2422
+ "global"
2423
+ ],
2424
+ "license_id": "mit",
2425
+ "quantization": "fp32 safetensors",
2426
+ "primary_artifact": "model.safetensors",
2427
+ "active_params_b": null,
2428
+ "total_params_b": 0.279,
2429
+ "quality_rank": 2,
2430
+ "cost_rank": 1,
2431
+ "sovereignty_tier": 3,
2432
+ "supports_tools": false,
2433
+ "supports_json": true,
2434
+ "tags": [
2435
+ "safety",
2436
+ "moderation",
2437
+ "classifier",
2438
+ "guardrail"
2439
+ ],
2440
+ "metadata": {
2441
+ "upstream_repo": "KoalaAI/Text-Moderation",
2442
+ "release_version": "v0.1.0",
2443
+ "package_state": "weights_mirrored",
2444
+ "public_status": "public and non-gated",
2445
+ "validation_status": "scaffold_verified"
2446
+ }
2447
+ },
2448
+ {
2449
+ "model_id": "lumynax-math-qwen25-math-7b-gguf",
2450
+ "repo_id": "AbteeXAILab/lumynax-math-qwen25-math-7b-gguf",
2451
+ "title": "LumynaX Math Qwen2.5 Math 7B GGUF",
2452
+ "family": "qwen",
2453
+ "runtime": "llama_cpp",
2454
+ "modalities": [
2455
+ "text"
2456
+ ],
2457
+ "context_tokens": 4096,
2458
+ "jurisdiction": "NZ",
2459
+ "residency": [
2460
+ "NZ"
2461
+ ],
2462
+ "license_id": "apache-2.0",
2463
+ "quantization": "Q4_K_M GGUF",
2464
+ "primary_artifact": "Qwen2.5-Math-7B-Instruct-Q4_K_M.gguf",
2465
+ "active_params_b": null,
2466
+ "total_params_b": 7,
2467
+ "quality_rank": 2,
2468
+ "cost_rank": 2,
2469
+ "sovereignty_tier": 3,
2470
+ "supports_tools": false,
2471
+ "supports_json": true,
2472
+ "tags": [
2473
+ "math",
2474
+ "reasoning",
2475
+ "qwen",
2476
+ "gguf"
2477
+ ],
2478
+ "metadata": {
2479
+ "upstream_repo": "Qwen/Qwen2.5-Math-7B-Instruct",
2480
+ "release_version": "v0.1.0",
2481
+ "package_state": "weights_mirrored",
2482
+ "public_status": "public and non-gated",
2483
+ "validation_status": "scaffold_verified"
2484
+ }
2485
+ },
2486
+ {
2487
+ "model_id": "lumynax-translate-nllb-200-3b",
2488
+ "repo_id": "AbteeXAILab/lumynax-translate-nllb-200-3b",
2489
+ "title": "LumynaX Translate NLLB-200 3.3B",
2490
+ "family": "nllb",
2491
+ "runtime": "transformers",
2492
+ "modalities": [
2493
+ "text"
2494
+ ],
2495
+ "context_tokens": 1024,
2496
+ "jurisdiction": "NZ",
2497
+ "residency": [
2498
+ "NZ",
2499
+ "AU",
2500
+ "global"
2501
+ ],
2502
+ "license_id": "cc-by-nc-4.0",
2503
+ "quantization": "fp32 safetensors",
2504
+ "primary_artifact": "model.safetensors",
2505
+ "active_params_b": null,
2506
+ "total_params_b": 3.3,
2507
+ "quality_rank": 2,
2508
+ "cost_rank": 3,
2509
+ "sovereignty_tier": 3,
2510
+ "supports_tools": false,
2511
+ "supports_json": false,
2512
+ "tags": [
2513
+ "translation",
2514
+ "nllb",
2515
+ "te-reo",
2516
+ "aotearoa",
2517
+ "languages"
2518
+ ],
2519
+ "metadata": {
2520
+ "upstream_repo": "facebook/nllb-200-3.3B",
2521
+ "release_version": "v0.1.0",
2522
+ "package_state": "weights_mirrored",
2523
+ "public_status": "public and non-gated",
2524
+ "validation_status": "scaffold_verified"
2525
+ }
2526
+ },
2527
+ {
2528
+ "model_id": "lumynax-coder-deepseek-v2-lite-16b-gguf",
2529
+ "repo_id": "AbteeXAILab/lumynax-coder-deepseek-v2-lite-16b-gguf",
2530
+ "title": "LumynaX Coder DeepSeek-Coder V2 Lite 16B GGUF",
2531
+ "family": "deepseek",
2532
+ "runtime": "llama_cpp",
2533
+ "modalities": [
2534
+ "text"
2535
+ ],
2536
+ "context_tokens": 163840,
2537
+ "jurisdiction": "NZ",
2538
+ "residency": [
2539
+ "NZ"
2540
+ ],
2541
+ "license_id": "other",
2542
+ "quantization": "Q4_K_M GGUF",
2543
+ "primary_artifact": "DeepSeek-Coder-V2-Lite-Instruct-Q4_K_M.gguf",
2544
+ "active_params_b": 2.4,
2545
+ "total_params_b": 16,
2546
+ "quality_rank": 2,
2547
+ "cost_rank": 2,
2548
+ "sovereignty_tier": 3,
2549
+ "supports_tools": true,
2550
+ "supports_json": true,
2551
+ "tags": [
2552
+ "coder",
2553
+ "moe",
2554
+ "deepseek",
2555
+ "gguf",
2556
+ "long-context"
2557
+ ],
2558
+ "metadata": {
2559
+ "upstream_repo": "deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct",
2560
+ "release_version": "v0.1.0",
2561
+ "package_state": "weights_mirrored",
2562
+ "public_status": "public and non-gated",
2563
+ "validation_status": "scaffold_verified"
2564
+ }
2565
+ },
2566
+ {
2567
+ "model_id": "lumynax-chat-hermes-3-llama31-8b-gguf",
2568
+ "repo_id": "AbteeXAILab/lumynax-chat-hermes-3-llama31-8b-gguf",
2569
+ "title": "LumynaX Chat Hermes-3 Llama-3.1 8B GGUF",
2570
+ "family": "llama",
2571
+ "runtime": "llama_cpp",
2572
+ "modalities": [
2573
+ "text"
2574
+ ],
2575
+ "context_tokens": 131072,
2576
+ "jurisdiction": "NZ",
2577
+ "residency": [
2578
+ "NZ"
2579
+ ],
2580
+ "license_id": "llama3.1",
2581
+ "quantization": "Q4_K_M GGUF",
2582
+ "primary_artifact": "Hermes-3-Llama-3.1-8B-Q4_K_M.gguf",
2583
+ "active_params_b": null,
2584
+ "total_params_b": 8,
2585
+ "quality_rank": 2,
2586
+ "cost_rank": 2,
2587
+ "sovereignty_tier": 3,
2588
+ "supports_tools": true,
2589
+ "supports_json": true,
2590
+ "tags": [
2591
+ "chat",
2592
+ "hermes",
2593
+ "llama",
2594
+ "gguf",
2595
+ "tools",
2596
+ "function-calling"
2597
+ ],
2598
+ "metadata": {
2599
+ "upstream_repo": "NousResearch/Hermes-3-Llama-3.1-8B",
2600
+ "release_version": "v0.1.0",
2601
+ "package_state": "weights_mirrored",
2602
+ "public_status": "public and non-gated",
2603
+ "validation_status": "scaffold_verified"
2604
+ }
2605
+ },
2606
+ {
2607
+ "model_id": "lumynax-doc-nougat-base",
2608
+ "repo_id": "AbteeXAILab/lumynax-doc-nougat-base",
2609
+ "title": "LumynaX Doc Nougat Base (academic PDF -> markdown)",
2610
+ "family": "nougat",
2611
+ "runtime": "transformers",
2612
+ "modalities": [
2613
+ "text",
2614
+ "vision"
2615
+ ],
2616
+ "context_tokens": 4096,
2617
+ "jurisdiction": "NZ",
2618
+ "residency": [
2619
+ "NZ",
2620
+ "AU",
2621
+ "global"
2622
+ ],
2623
+ "license_id": "cc-by-4.0",
2624
+ "quantization": "fp32 safetensors",
2625
+ "primary_artifact": "model.safetensors",
2626
+ "active_params_b": null,
2627
+ "total_params_b": 0.35,
2628
+ "quality_rank": 2,
2629
+ "cost_rank": 1,
2630
+ "sovereignty_tier": 3,
2631
+ "supports_tools": false,
2632
+ "supports_json": true,
2633
+ "tags": [
2634
+ "doc-ai",
2635
+ "ocr",
2636
+ "nougat",
2637
+ "pdf",
2638
+ "markdown"
2639
+ ],
2640
+ "metadata": {
2641
+ "upstream_repo": "facebook/nougat-base",
2642
+ "release_version": "v0.1.0",
2643
+ "package_state": "weights_mirrored",
2644
+ "public_status": "public and non-gated",
2645
+ "validation_status": "scaffold_verified"
2646
+ }
2647
+ },
2648
+ {
2649
+ "model_id": "lumynax-doc-donut-base",
2650
+ "repo_id": "AbteeXAILab/lumynax-doc-donut-base",
2651
+ "title": "LumynaX Doc Donut Base (document understanding)",
2652
+ "family": "donut",
2653
+ "runtime": "transformers",
2654
+ "modalities": [
2655
+ "text",
2656
+ "vision"
2657
+ ],
2658
+ "context_tokens": 1536,
2659
+ "jurisdiction": "NZ",
2660
+ "residency": [
2661
+ "NZ",
2662
+ "AU",
2663
+ "global"
2664
+ ],
2665
+ "license_id": "mit",
2666
+ "quantization": "fp32 safetensors",
2667
+ "primary_artifact": "model.safetensors",
2668
+ "active_params_b": null,
2669
+ "total_params_b": 0.2,
2670
+ "quality_rank": 2,
2671
+ "cost_rank": 1,
2672
+ "sovereignty_tier": 3,
2673
+ "supports_tools": false,
2674
+ "supports_json": true,
2675
+ "tags": [
2676
+ "doc-ai",
2677
+ "donut",
2678
+ "document-vqa"
2679
+ ],
2680
+ "metadata": {
2681
+ "upstream_repo": "naver-clova-ix/donut-base",
2682
+ "release_version": "v0.1.0",
2683
+ "package_state": "weights_mirrored",
2684
+ "public_status": "public and non-gated",
2685
+ "validation_status": "scaffold_verified"
2686
+ }
2687
+ },
2688
+ {
2689
+ "model_id": "lumynax-ocr-trocr-large-printed",
2690
+ "repo_id": "AbteeXAILab/lumynax-ocr-trocr-large-printed",
2691
+ "title": "LumynaX OCR TrOCR Large Printed",
2692
+ "family": "trocr",
2693
+ "runtime": "transformers",
2694
+ "modalities": [
2695
+ "text",
2696
+ "vision"
2697
+ ],
2698
+ "context_tokens": 512,
2699
+ "jurisdiction": "NZ",
2700
+ "residency": [
2701
+ "NZ",
2702
+ "AU",
2703
+ "global"
2704
+ ],
2705
+ "license_id": "mit",
2706
+ "quantization": "fp32 safetensors",
2707
+ "primary_artifact": "model.safetensors",
2708
+ "active_params_b": null,
2709
+ "total_params_b": 0.55,
2710
+ "quality_rank": 2,
2711
+ "cost_rank": 2,
2712
+ "sovereignty_tier": 3,
2713
+ "supports_tools": false,
2714
+ "supports_json": false,
2715
+ "tags": [
2716
+ "ocr",
2717
+ "printed",
2718
+ "trocr"
2719
+ ],
2720
+ "metadata": {
2721
+ "upstream_repo": "microsoft/trocr-large-printed",
2722
+ "release_version": "v0.1.0",
2723
+ "package_state": "weights_mirrored",
2724
+ "public_status": "public and non-gated",
2725
+ "validation_status": "scaffold_verified"
2726
+ }
2727
+ },
2728
+ {
2729
+ "model_id": "lumynax-ocr-trocr-large-handwritten",
2730
+ "repo_id": "AbteeXAILab/lumynax-ocr-trocr-large-handwritten",
2731
+ "title": "LumynaX OCR TrOCR Large Handwritten",
2732
+ "family": "trocr",
2733
+ "runtime": "transformers",
2734
+ "modalities": [
2735
+ "text",
2736
+ "vision"
2737
+ ],
2738
+ "context_tokens": 512,
2739
+ "jurisdiction": "NZ",
2740
+ "residency": [
2741
+ "NZ",
2742
+ "AU",
2743
+ "global"
2744
+ ],
2745
+ "license_id": "mit",
2746
+ "quantization": "fp32 safetensors",
2747
+ "primary_artifact": "model.safetensors",
2748
+ "active_params_b": null,
2749
+ "total_params_b": 0.55,
2750
+ "quality_rank": 2,
2751
+ "cost_rank": 2,
2752
+ "sovereignty_tier": 3,
2753
+ "supports_tools": false,
2754
+ "supports_json": false,
2755
+ "tags": [
2756
+ "ocr",
2757
+ "handwritten",
2758
+ "trocr"
2759
+ ],
2760
+ "metadata": {
2761
+ "upstream_repo": "microsoft/trocr-large-handwritten",
2762
+ "release_version": "v0.1.0",
2763
+ "package_state": "weights_mirrored",
2764
+ "public_status": "public and non-gated",
2765
+ "validation_status": "scaffold_verified"
2766
+ }
2767
+ },
2768
+ {
2769
+ "model_id": "lumynax-doc-layoutlmv3-base",
2770
+ "repo_id": "AbteeXAILab/lumynax-doc-layoutlmv3-base",
2771
+ "title": "LumynaX Doc LayoutLMv3 Base (document layout+text)",
2772
+ "family": "layoutlm",
2773
+ "runtime": "transformers",
2774
+ "modalities": [
2775
+ "text",
2776
+ "vision"
2777
+ ],
2778
+ "context_tokens": 512,
2779
+ "jurisdiction": "NZ",
2780
+ "residency": [
2781
+ "NZ",
2782
+ "AU",
2783
+ "global"
2784
+ ],
2785
+ "license_id": "cc-by-nc-4.0",
2786
+ "quantization": "fp32 safetensors",
2787
+ "primary_artifact": "model.safetensors",
2788
+ "active_params_b": null,
2789
+ "total_params_b": 0.13,
2790
+ "quality_rank": 2,
2791
+ "cost_rank": 1,
2792
+ "sovereignty_tier": 3,
2793
+ "supports_tools": false,
2794
+ "supports_json": true,
2795
+ "tags": [
2796
+ "doc-ai",
2797
+ "layout",
2798
+ "layoutlm"
2799
+ ],
2800
+ "metadata": {
2801
+ "upstream_repo": "microsoft/layoutlmv3-base",
2802
+ "release_version": "v0.1.0",
2803
+ "package_state": "weights_mirrored",
2804
+ "public_status": "public and non-gated",
2805
+ "validation_status": "scaffold_verified"
2806
+ }
2807
+ },
2808
+ {
2809
+ "model_id": "lumynax-doc-table-transformer-detection",
2810
+ "repo_id": "AbteeXAILab/lumynax-doc-table-transformer-detection",
2811
+ "title": "LumynaX Doc Table Transformer (detection)",
2812
+ "family": "table-transformer",
2813
+ "runtime": "transformers",
2814
+ "modalities": [
2815
+ "vision"
2816
+ ],
2817
+ "context_tokens": 0,
2818
+ "jurisdiction": "NZ",
2819
+ "residency": [
2820
+ "NZ",
2821
+ "AU",
2822
+ "global"
2823
+ ],
2824
+ "license_id": "mit",
2825
+ "quantization": "fp32 safetensors",
2826
+ "primary_artifact": "model.safetensors",
2827
+ "active_params_b": null,
2828
+ "total_params_b": 0.029,
2829
+ "quality_rank": 2,
2830
+ "cost_rank": 1,
2831
+ "sovereignty_tier": 3,
2832
+ "supports_tools": false,
2833
+ "supports_json": true,
2834
+ "tags": [
2835
+ "doc-ai",
2836
+ "tables",
2837
+ "detection",
2838
+ "detr"
2839
+ ],
2840
+ "metadata": {
2841
+ "upstream_repo": "microsoft/table-transformer-detection",
2842
+ "release_version": "v0.1.0",
2843
+ "package_state": "weights_mirrored",
2844
+ "public_status": "public and non-gated",
2845
+ "validation_status": "scaffold_verified"
2846
+ }
2847
+ },
2848
+ {
2849
+ "model_id": "lumynax-embed-nomic-v2-moe",
2850
+ "repo_id": "AbteeXAILab/lumynax-embed-nomic-v2-moe",
2851
+ "title": "LumynaX Embed Nomic v2 MoE (modern retrieval)",
2852
+ "family": "nomic",
2853
+ "runtime": "python_embedding",
2854
+ "modalities": [
2855
+ "text"
2856
+ ],
2857
+ "context_tokens": 512,
2858
+ "jurisdiction": "NZ",
2859
+ "residency": [
2860
+ "NZ",
2861
+ "AU",
2862
+ "global"
2863
+ ],
2864
+ "license_id": "apache-2.0",
2865
+ "quantization": "fp32 safetensors",
2866
+ "primary_artifact": "model.safetensors",
2867
+ "active_params_b": 0.305,
2868
+ "total_params_b": 0.475,
2869
+ "quality_rank": 1,
2870
+ "cost_rank": 1,
2871
+ "sovereignty_tier": 3,
2872
+ "supports_tools": false,
2873
+ "supports_json": true,
2874
+ "tags": [
2875
+ "embedding",
2876
+ "retrieval",
2877
+ "nomic",
2878
+ "moe",
2879
+ "modern"
2880
+ ],
2881
+ "metadata": {
2882
+ "upstream_repo": "nomic-ai/nomic-embed-text-v2-moe",
2883
+ "release_version": "v0.1.0",
2884
+ "package_state": "weights_mirrored",
2885
+ "public_status": "public and non-gated",
2886
+ "validation_status": "scaffold_verified"
2887
+ }
2888
+ },
2889
+ {
2890
+ "model_id": "lumynax-embed-granite-278m-multilingual",
2891
+ "repo_id": "AbteeXAILab/lumynax-embed-granite-278m-multilingual",
2892
+ "title": "LumynaX Embed IBM Granite 278M Multilingual",
2893
+ "family": "granite",
2894
+ "runtime": "python_embedding",
2895
+ "modalities": [
2896
+ "text"
2897
+ ],
2898
+ "context_tokens": 512,
2899
+ "jurisdiction": "NZ",
2900
+ "residency": [
2901
+ "NZ",
2902
+ "AU",
2903
+ "global"
2904
+ ],
2905
+ "license_id": "apache-2.0",
2906
+ "quantization": "fp32 safetensors",
2907
+ "primary_artifact": "model.safetensors",
2908
+ "active_params_b": null,
2909
+ "total_params_b": 0.278,
2910
+ "quality_rank": 2,
2911
+ "cost_rank": 1,
2912
+ "sovereignty_tier": 3,
2913
+ "supports_tools": false,
2914
+ "supports_json": true,
2915
+ "tags": [
2916
+ "embedding",
2917
+ "retrieval",
2918
+ "granite",
2919
+ "multilingual",
2920
+ "ibm"
2921
+ ],
2922
+ "metadata": {
2923
+ "upstream_repo": "ibm-granite/granite-embedding-278m-multilingual",
2924
+ "release_version": "v0.1.0",
2925
+ "package_state": "weights_mirrored",
2926
+ "public_status": "public and non-gated",
2927
+ "validation_status": "scaffold_verified"
2928
+ }
2929
+ },
2930
+ {
2931
+ "model_id": "lumynax-frontier-qwen25-72b-instruct-gguf",
2932
+ "repo_id": "AbteeXAILab/lumynax-frontier-qwen25-72b-instruct-gguf",
2933
+ "title": "LumynaX Frontier Qwen2.5 72B Instruct GGUF",
2934
+ "family": "qwen",
2935
+ "runtime": "llama_cpp",
2936
+ "modalities": [
2937
+ "text"
2938
+ ],
2939
+ "context_tokens": 131072,
2940
+ "jurisdiction": "NZ",
2941
+ "residency": [
2942
+ "NZ",
2943
+ "AU",
2944
+ "global"
2945
+ ],
2946
+ "license_id": "other",
2947
+ "quantization": "Q4_K_M GGUF",
2948
+ "primary_artifact": "Qwen2.5-72B-Instruct-Q4_K_M.gguf",
2949
+ "active_params_b": null,
2950
+ "total_params_b": 72,
2951
+ "quality_rank": 1,
2952
+ "cost_rank": 4,
2953
+ "sovereignty_tier": 3,
2954
+ "supports_tools": true,
2955
+ "supports_json": true,
2956
+ "tags": [
2957
+ "frontier",
2958
+ "dense",
2959
+ "qwen",
2960
+ "gguf",
2961
+ "tools",
2962
+ "long-context"
2963
+ ],
2964
+ "metadata": {
2965
+ "upstream_repo": "Qwen/Qwen2.5-72B-Instruct",
2966
+ "release_version": "v0.1.0",
2967
+ "package_state": "weights_mirrored",
2968
+ "public_status": "public and non-gated",
2969
+ "validation_status": "scaffold_verified"
2970
+ }
2971
+ },
2972
+ {
2973
+ "model_id": "lumynax-frontier-olmo2-32b-instruct",
2974
+ "repo_id": "AbteeXAILab/lumynax-frontier-olmo2-32b-instruct",
2975
+ "title": "LumynaX Frontier OLMo-2 32B Instruct (fully open)",
2976
+ "family": "olmo",
2977
+ "runtime": "transformers",
2978
+ "modalities": [
2979
+ "text"
2980
+ ],
2981
+ "context_tokens": 4096,
2982
+ "jurisdiction": "NZ",
2983
+ "residency": [
2984
+ "NZ",
2985
+ "AU",
2986
+ "global"
2987
+ ],
2988
+ "license_id": "apache-2.0",
2989
+ "quantization": "bf16 safetensors",
2990
+ "primary_artifact": "model.safetensors (sharded)",
2991
+ "active_params_b": null,
2992
+ "total_params_b": 32,
2993
+ "quality_rank": 1,
2994
+ "cost_rank": 4,
2995
+ "sovereignty_tier": 2,
2996
+ "supports_tools": true,
2997
+ "supports_json": true,
2998
+ "tags": [
2999
+ "frontier",
3000
+ "fully-open",
3001
+ "olmo",
3002
+ "allenai",
3003
+ "apache"
3004
+ ],
3005
+ "metadata": {
3006
+ "upstream_repo": "allenai/OLMo-2-0325-32B-Instruct",
3007
+ "release_version": "v0.1.0",
3008
+ "package_state": "weights_mirrored",
3009
+ "public_status": "public and non-gated",
3010
+ "validation_status": "scaffold_verified"
3011
+ }
3012
+ },
3013
+ {
3014
+ "model_id": "lumynax-chat-yi-15-34b-gguf",
3015
+ "repo_id": "AbteeXAILab/lumynax-chat-yi-15-34b-gguf",
3016
+ "title": "LumynaX Chat Yi-1.5 34B GGUF (multilingual)",
3017
+ "family": "yi",
3018
+ "runtime": "llama_cpp",
3019
+ "modalities": [
3020
+ "text"
3021
+ ],
3022
+ "context_tokens": 32768,
3023
+ "jurisdiction": "NZ",
3024
+ "residency": [
3025
+ "NZ"
3026
+ ],
3027
+ "license_id": "apache-2.0",
3028
+ "quantization": "Q4_K_M GGUF",
3029
+ "primary_artifact": "Yi-1.5-34B-Chat-Q4_K_M.gguf",
3030
+ "active_params_b": null,
3031
+ "total_params_b": 34,
3032
+ "quality_rank": 2,
3033
+ "cost_rank": 3,
3034
+ "sovereignty_tier": 3,
3035
+ "supports_tools": true,
3036
+ "supports_json": true,
3037
+ "tags": [
3038
+ "chat",
3039
+ "yi",
3040
+ "multilingual",
3041
+ "gguf"
3042
+ ],
3043
+ "metadata": {
3044
+ "upstream_repo": "01-ai/Yi-1.5-34B-Chat",
3045
+ "release_version": "v0.1.0",
3046
+ "package_state": "weights_mirrored",
3047
+ "public_status": "public and non-gated",
3048
+ "validation_status": "scaffold_verified"
3049
+ }
3050
+ },
3051
+ {
3052
+ "model_id": "lumynax-reasoning-internlm3-8b-gguf",
3053
+ "repo_id": "AbteeXAILab/lumynax-reasoning-internlm3-8b-gguf",
3054
+ "title": "LumynaX Reasoning InternLM3 8B Instruct GGUF",
3055
+ "family": "internlm",
3056
+ "runtime": "llama_cpp",
3057
+ "modalities": [
3058
+ "text"
3059
+ ],
3060
+ "context_tokens": 32768,
3061
+ "jurisdiction": "NZ",
3062
+ "residency": [
3063
+ "NZ"
3064
+ ],
3065
+ "license_id": "apache-2.0",
3066
+ "quantization": "Q4_K_M GGUF",
3067
+ "primary_artifact": "internlm3-8b-instruct-Q4_K_M.gguf",
3068
+ "active_params_b": null,
3069
+ "total_params_b": 8,
3070
+ "quality_rank": 2,
3071
+ "cost_rank": 2,
3072
+ "sovereignty_tier": 3,
3073
+ "supports_tools": true,
3074
+ "supports_json": true,
3075
+ "tags": [
3076
+ "reasoning",
3077
+ "internlm",
3078
+ "chat",
3079
+ "gguf"
3080
+ ],
3081
+ "metadata": {
3082
+ "upstream_repo": "internlm/internlm3-8b-instruct",
3083
+ "release_version": "v0.1.0",
3084
+ "package_state": "weights_mirrored",
3085
+ "public_status": "public and non-gated",
3086
+ "validation_status": "scaffold_verified"
3087
+ }
3088
+ },
3089
+ {
3090
+ "model_id": "lumynax-multimodal-aria-25b-moe",
3091
+ "repo_id": "AbteeXAILab/lumynax-multimodal-aria-25b-moe",
3092
+ "title": "LumynaX Multimodal Aria 25B/3.5B MoE",
3093
+ "family": "aria",
3094
+ "runtime": "transformers_multimodal",
3095
+ "modalities": [
3096
+ "text",
3097
+ "vision"
3098
+ ],
3099
+ "context_tokens": 65536,
3100
+ "jurisdiction": "NZ",
3101
+ "residency": [
3102
+ "NZ",
3103
+ "AU",
3104
+ "global"
3105
+ ],
3106
+ "license_id": "apache-2.0",
3107
+ "quantization": "bf16 safetensors",
3108
+ "primary_artifact": "model.safetensors (sharded)",
3109
+ "active_params_b": 3.5,
3110
+ "total_params_b": 25,
3111
+ "quality_rank": 2,
3112
+ "cost_rank": 3,
3113
+ "sovereignty_tier": 2,
3114
+ "supports_tools": true,
3115
+ "supports_json": true,
3116
+ "tags": [
3117
+ "multimodal",
3118
+ "vision",
3119
+ "moe",
3120
+ "aria",
3121
+ "apache"
3122
+ ],
3123
+ "metadata": {
3124
+ "upstream_repo": "rhymes-ai/Aria",
3125
+ "release_version": "v0.1.0",
3126
+ "package_state": "weights_mirrored",
3127
+ "public_status": "public and non-gated",
3128
+ "validation_status": "scaffold_verified"
3129
+ }
3130
+ },
3131
+ {
3132
+ "model_id": "lumynax-multimodal-llava-next-34b",
3133
+ "repo_id": "AbteeXAILab/lumynax-multimodal-llava-next-34b",
3134
+ "title": "LumynaX Multimodal LLaVA-Next 34B",
3135
+ "family": "llava",
3136
+ "runtime": "transformers_multimodal",
3137
+ "modalities": [
3138
+ "text",
3139
+ "vision"
3140
+ ],
3141
+ "context_tokens": 4096,
3142
+ "jurisdiction": "NZ",
3143
+ "residency": [
3144
+ "NZ",
3145
+ "AU",
3146
+ "global"
3147
+ ],
3148
+ "license_id": "apache-2.0",
3149
+ "quantization": "bf16 safetensors",
3150
+ "primary_artifact": "model.safetensors (sharded)",
3151
+ "active_params_b": null,
3152
+ "total_params_b": 34,
3153
+ "quality_rank": 2,
3154
+ "cost_rank": 4,
3155
+ "sovereignty_tier": 2,
3156
+ "supports_tools": false,
3157
+ "supports_json": true,
3158
+ "tags": [
3159
+ "multimodal",
3160
+ "vision",
3161
+ "llava",
3162
+ "yi-based"
3163
+ ],
3164
+ "metadata": {
3165
+ "upstream_repo": "liuhaotian/llava-v1.6-34b",
3166
+ "release_version": "v0.1.0",
3167
+ "package_state": "weights_mirrored",
3168
+ "public_status": "public and non-gated",
3169
+ "validation_status": "scaffold_verified"
3170
+ }
3171
+ },
3172
+ {
3173
+ "model_id": "lumynax-reasoning-qwq-32b-gguf",
3174
+ "repo_id": "AbteeXAILab/lumynax-reasoning-qwq-32b-gguf",
3175
+ "title": "LumynaX Reasoning QwQ-32B GGUF",
3176
+ "family": "qwen",
3177
+ "runtime": "llama_cpp",
3178
+ "modalities": [
3179
+ "text"
3180
+ ],
3181
+ "context_tokens": 131072,
3182
+ "jurisdiction": "NZ",
3183
+ "residency": [
3184
+ "NZ"
3185
+ ],
3186
+ "license_id": "apache-2.0",
3187
+ "quantization": "Q4_K_M GGUF",
3188
+ "primary_artifact": "qwq-32b-q4_k_m.gguf",
3189
+ "active_params_b": null,
3190
+ "total_params_b": 32,
3191
+ "quality_rank": 1,
3192
+ "cost_rank": 3,
3193
+ "sovereignty_tier": 3,
3194
+ "supports_tools": true,
3195
+ "supports_json": true,
3196
+ "tags": [
3197
+ "reasoning",
3198
+ "qwq",
3199
+ "qwen",
3200
+ "gguf",
3201
+ "chain-of-thought"
3202
+ ],
3203
+ "metadata": {
3204
+ "upstream_repo": "Qwen/QwQ-32B",
3205
+ "release_version": "v0.1.0",
3206
+ "package_state": "weights_mirrored",
3207
+ "public_status": "public and non-gated",
3208
+ "validation_status": "scaffold_verified"
3209
+ }
3210
+ },
3211
+ {
3212
+ "model_id": "lumynax-frontier-phi-4-14b-gguf",
3213
+ "repo_id": "AbteeXAILab/lumynax-frontier-phi-4-14b-gguf",
3214
+ "title": "LumynaX Frontier Phi-4 14B GGUF",
3215
+ "family": "phi",
3216
+ "runtime": "llama_cpp",
3217
+ "modalities": [
3218
+ "text"
3219
+ ],
3220
+ "context_tokens": 16384,
3221
+ "jurisdiction": "NZ",
3222
+ "residency": [
3223
+ "NZ"
3224
+ ],
3225
+ "license_id": "mit",
3226
+ "quantization": "Q4_K_M GGUF",
3227
+ "primary_artifact": "phi-4-Q4_K_M.gguf",
3228
+ "active_params_b": null,
3229
+ "total_params_b": 14,
3230
+ "quality_rank": 2,
3231
+ "cost_rank": 2,
3232
+ "sovereignty_tier": 3,
3233
+ "supports_tools": true,
3234
+ "supports_json": true,
3235
+ "tags": [
3236
+ "frontier",
3237
+ "phi",
3238
+ "microsoft",
3239
+ "gguf",
3240
+ "efficient"
3241
+ ],
3242
+ "metadata": {
3243
+ "upstream_repo": "microsoft/phi-4",
3244
+ "release_version": "v0.1.0",
3245
+ "package_state": "weights_mirrored",
3246
+ "public_status": "public and non-gated",
3247
+ "validation_status": "scaffold_verified"
3248
+ }
3249
+ }
3250
+ ]
3251
+ }
marama_route/configs/provider_aliases.yaml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ provider_id: abteex-marama
2
+ base_path: /v1
3
+ default_model_alias: lumynax/auto
4
+ aliases:
5
+ lumynax/auto:
6
+ task_type: general
7
+ requires_local: true
8
+ description: Select the best resident LumynaX model for the request.
9
+ lumynax/code:
10
+ task_type: code
11
+ requires_local: true
12
+ requires_json: true
13
+ description: Prefer coder-tagged LumynaX models with tool and JSON support.
14
+ lumynax/reasoning:
15
+ task_type: reasoning
16
+ requires_local: true
17
+ description: Prefer reasoning-tagged models inside residency constraints.
18
+ lumynax/multimodal:
19
+ task_type: multimodal
20
+ requires_local: false
21
+ description: Prefer text-plus-image LumynaX models when policy allows.
22
+ default_route:
23
+ jurisdiction: NZ
24
+ data_sensitivity: internal
25
+ min_context_tokens: 4096
26
+ max_fallbacks: 3
27
+ telemetry:
28
+ retain_prompt_by_default: false
29
+ retain_route_decision_days: 365
30
+ hash_request_payload: true
marama_route/configs/routing_policy.yaml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ policy_id: lumynax-marama-route-default-v0
2
+ default_jurisdiction: NZ
3
+ default_requires_local: true
4
+ high_sensitivity:
5
+ - personal
6
+ - restricted
7
+ - health
8
+ - iwi
9
+ - taonga
10
+ required_for_high_sensitivity:
11
+ min_sovereignty_tier: 2
12
+ residency_must_match_request_jurisdiction: true
13
+ retain_prompt_by_default: false
14
+ preferred_runtimes:
15
+ - llama_cpp
16
+ - transformers_multimodal
17
+ - python_embedding
18
+ fallbacks:
19
+ max_default_fallbacks: 3
20
+ include_rejection_reasons: true
marama_route/examples/capsule.personal-sovereignty-profile.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "capsule_id": "cap-personal-profile-001",
3
+ "subject_id": "operator-local-profile",
4
+ "jurisdiction": "NZ",
5
+ "sensitivity": "personal",
6
+ "allowed_purposes": [
7
+ "personal_memory",
8
+ "coding_assistance",
9
+ "inference"
10
+ ],
11
+ "denied_purposes": [
12
+ "ad_training",
13
+ "third_party_resale",
14
+ "public_leaderboard"
15
+ ],
16
+ "resident_regions": [
17
+ "NZ"
18
+ ],
19
+ "data_classes": [
20
+ "personal",
21
+ "preferences",
22
+ "source_code",
23
+ "runtime_logs"
24
+ ],
25
+ "retention_days": 7,
26
+ "export_allowed": false,
27
+ "training_allowed": false,
28
+ "personal_detail_level": "pseudonymous",
29
+ "consent_scopes": [
30
+ "personal_memory",
31
+ "coding_assistance"
32
+ ],
33
+ "data_subject_rights": [
34
+ "access",
35
+ "correction",
36
+ "deletion_request",
37
+ "processing_objection"
38
+ ],
39
+ "schema_context": "https://schema.org",
40
+ "consent_record": "local-profile-consent-v0",
41
+ "metadata": {
42
+ "storage": "local_encrypted_profile_store",
43
+ "prompt_rule": "summarise preferences without exposing raw personal notes"
44
+ }
45
+ }
marama_route/examples/capsule.restricted-nz-code.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "capsule_id": "cap-nz-code-001",
3
+ "subject_id": "abx-workspace",
4
+ "jurisdiction": "NZ",
5
+ "sensitivity": "restricted",
6
+ "allowed_purposes": [
7
+ "coding_assistance",
8
+ "inference",
9
+ "test_generation"
10
+ ],
11
+ "denied_purposes": [
12
+ "ad_training",
13
+ "third_party_resale"
14
+ ],
15
+ "resident_regions": [
16
+ "NZ"
17
+ ],
18
+ "data_classes": [
19
+ "source_code",
20
+ "policy",
21
+ "runtime_logs"
22
+ ],
23
+ "retention_days": 14,
24
+ "export_allowed": false,
25
+ "training_allowed": false,
26
+ "schema_context": "https://schema.org",
27
+ "consent_record": "local-operator-policy-v0"
28
+ }
marama_route/examples/opencode.marama-route.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "provider": {
4
+ "abteex-marama": {
5
+ "npm": "@ai-sdk/openai-compatible",
6
+ "name": "AbteeX MaramaRoute",
7
+ "options": {
8
+ "baseURL": "http://127.0.0.1:8787/v1",
9
+ "apiKey": "{env:ABTEEX_MARAMA_API_KEY}",
10
+ "headers": {
11
+ "X-AbteeX-Tenant": "{env:ABTEEX_TENANT_ID}",
12
+ "X-AbteeX-Workspace-Capsule": "{env:SOVEREIGNCODE_CAPSULE_ID}"
13
+ }
14
+ },
15
+ "models": {
16
+ "lumynax/auto": {
17
+ "name": "LumynaX Auto Sovereign Route"
18
+ },
19
+ "lumynax/code": {
20
+ "name": "LumynaX Code Route"
21
+ },
22
+ "lumynax/reasoning": {
23
+ "name": "LumynaX Reasoning Route"
24
+ }
25
+ }
26
+ }
27
+ }
28
+ }
marama_route/examples/request.allowed-local-edit.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "actor": "developer",
3
+ "purpose": "coding_assistance",
4
+ "action": "read_context",
5
+ "region": "NZ",
6
+ "model_id": "AbteeXAILab/lumynax-infused-qwen3-8b-gguf",
7
+ "data_classes": [
8
+ "source_code"
9
+ ],
10
+ "tool_name": "workspace_reader",
11
+ "writes_files": false,
12
+ "exports_data": false,
13
+ "trains_model": false,
14
+ "human_approved": false
15
+ }
marama_route/examples/request.code-restricted.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "prompt": "Refactor this private Python service and explain the diff.",
3
+ "task_type": "code",
4
+ "modalities": [
5
+ "text"
6
+ ],
7
+ "jurisdiction": "NZ",
8
+ "data_sensitivity": "restricted",
9
+ "min_context_tokens": 4096,
10
+ "requires_local": true,
11
+ "requires_tools": false,
12
+ "requires_json": true,
13
+ "max_fallbacks": 3
14
+ }
marama_route/examples/request.denied-training.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "actor": "developer",
3
+ "purpose": "coding_assistance",
4
+ "action": "train_adapter",
5
+ "region": "NZ",
6
+ "model_id": "local/lumynax",
7
+ "data_classes": [
8
+ "source_code"
9
+ ],
10
+ "tool_name": "trainer",
11
+ "writes_files": true,
12
+ "exports_data": false,
13
+ "trains_model": true,
14
+ "human_approved": true
15
+ }
marama_route/examples/request.openai-chat-code.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": "lumynax/code",
3
+ "messages": [
4
+ {
5
+ "role": "system",
6
+ "content": "You are a governed coding assistant for a New Zealand workspace."
7
+ },
8
+ {
9
+ "role": "user",
10
+ "content": "Refactor this private Python repository function and return a JSON diff plan."
11
+ }
12
+ ],
13
+ "response_format": {
14
+ "type": "json_object"
15
+ },
16
+ "tools": [
17
+ {
18
+ "type": "function",
19
+ "function": {
20
+ "name": "propose_patch",
21
+ "description": "Propose a patch without writing it.",
22
+ "parameters": {
23
+ "type": "object",
24
+ "properties": {
25
+ "files": {
26
+ "type": "array",
27
+ "items": { "type": "string" }
28
+ }
29
+ }
30
+ }
31
+ }
32
+ }
33
+ ],
34
+ "route": {
35
+ "jurisdiction": "NZ",
36
+ "data_sensitivity": "restricted",
37
+ "task_type": "code",
38
+ "requires_local": true,
39
+ "requires_tools": true,
40
+ "requires_json": true,
41
+ "min_context_tokens": 4096,
42
+ "max_fallbacks": 3
43
+ }
44
+ }
marama_route/examples/request.personal-memory-read.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "actor": "developer",
3
+ "purpose": "personal_memory",
4
+ "action": "read_context",
5
+ "region": "NZ",
6
+ "model_id": "local/lumynax",
7
+ "data_classes": [
8
+ "personal",
9
+ "preferences"
10
+ ],
11
+ "tool_name": "personal_profile_reader",
12
+ "writes_files": false,
13
+ "exports_data": false,
14
+ "trains_model": false,
15
+ "human_approved": false,
16
+ "personal_detail_level": "pseudonymous",
17
+ "consent_scope": "personal_memory",
18
+ "requested_retention_days": 7
19
+ }
marama_route/integrations/opencode-compatible-provider.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OpenCode-Compatible Provider Integration
2
+
3
+ ## Goal
4
+
5
+ Make AbteeX SovereignCode usable from OpenCode and similar coding agents without
6
+ requiring those tools to understand Data Capsules directly.
7
+
8
+ The integration shape is:
9
+
10
+ ```text
11
+ OpenCode
12
+ -> OpenAI-compatible provider config
13
+ -> MaramaRoute gateway `/v1`
14
+ -> SovereignCode policy and tool broker
15
+ -> LumynaX model runtime
16
+ ```
17
+
18
+ ## Current Compatibility Target
19
+
20
+ OpenCode supports custom OpenAI-compatible providers through
21
+ `@ai-sdk/openai-compatible` and a provider `baseURL`. OpenRouter exposes an
22
+ OpenAI-like chat endpoint at `/api/v1/chat/completions`, with normalized request
23
+ and response payloads. MaramaRoute should therefore expose:
24
+
25
+ - `GET /v1/models`
26
+ - `POST /v1/chat/completions`
27
+ - `POST /v1/route`
28
+ - `GET /v1/route/{decision_id}`
29
+
30
+ References checked on 2026-05-17:
31
+
32
+ - https://opencode.ai/docs/providers
33
+ - https://openrouter.ai/docs/api-reference/overview/
34
+ - https://openrouter.ai/docs/api-reference/chat-completion
35
+
36
+ ## OpenCode Provider Config
37
+
38
+ Use `examples/opencode.marama-route.json` as the project-local provider file.
39
+
40
+ The important fields are:
41
+
42
+ | Field | Value |
43
+ | --- | --- |
44
+ | `provider.abteex-marama.npm` | `@ai-sdk/openai-compatible` |
45
+ | `provider.abteex-marama.options.baseURL` | Local or hosted MaramaRoute `/v1` URL |
46
+ | `provider.abteex-marama.options.apiKey` | Environment backed key |
47
+ | `provider.abteex-marama.models` | LumynaX model aliases exposed by MaramaRoute |
48
+
49
+ ## SovereignCode Responsibilities
50
+
51
+ OpenCode sends a normal chat request. SovereignCode and MaramaRoute add:
52
+
53
+ - capsule resolution from workspace policy files
54
+ - purpose and personal-detail checks before prompt assembly
55
+ - model routing based on residency, modality, task, and sensitivity
56
+ - visible approval gates before file writes, shell commands, network export, or commit
57
+ - audit records for policy decisions and route decisions
58
+
59
+ ## Workspace Files
60
+
61
+ A governed workspace should carry:
62
+
63
+ ```text
64
+ .sovereigncode/
65
+ capsule.json
66
+ tenant-policy.yaml
67
+ approvals/
68
+ audit/
69
+ opencode.json
70
+ ```
71
+
72
+ The agent can start with `capsule.json` and `opencode.json`. The full tool
73
+ broker can add approvals and audit persistence in the next build stage.
74
+
75
+ ## Minimum Viable Flow
76
+
77
+ 1. User opens a project in OpenCode.
78
+ 2. OpenCode uses the `abteex-marama` provider.
79
+ 3. MaramaRoute dry-runs the chat payload and selects a LumynaX model.
80
+ 4. SovereignCode checks the workspace Data Capsule before exposing context.
81
+ 5. The coding agent proposes a plan.
82
+ 6. File writes require a visible diff and an audit record.
83
+ 7. Shell, network, commit, and publish actions require explicit approval.
84
+
85
+ ## Similar Clients
86
+
87
+ Any client that can point at an OpenAI-compatible endpoint should use the same
88
+ gateway:
89
+
90
+ | Client type | Expected integration |
91
+ | --- | --- |
92
+ | OpenCode | `opencode.json` custom provider |
93
+ | Continue-style IDE assistant | OpenAI-compatible base URL and model ids |
94
+ | Aider-style terminal assistant | OpenAI-compatible base URL and key |
95
+ | Internal agent runner | Direct `/v1/route` and `/v1/chat/completions` calls |
96
+ | Browser console | Same API behind tenant auth |
marama_route/integrations/opencode-provider.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "provider": {
4
+ "abteex-marama": {
5
+ "npm": "@ai-sdk/openai-compatible",
6
+ "name": "AbteeX MaramaRoute",
7
+ "options": {
8
+ "baseURL": "http://127.0.0.1:8787/v1",
9
+ "apiKey": "{env:ABTEEX_MARAMA_API_KEY}",
10
+ "headers": {
11
+ "X-AbteeX-Route-Jurisdiction": "NZ",
12
+ "X-AbteeX-Route-Sensitivity": "restricted"
13
+ }
14
+ },
15
+ "models": {
16
+ "lumynax/auto": {
17
+ "name": "LumynaX Auto"
18
+ },
19
+ "lumynax/code": {
20
+ "name": "LumynaX Code"
21
+ },
22
+ "lumynax/local": {
23
+ "name": "LumynaX Local"
24
+ }
25
+ }
26
+ }
27
+ }
28
+ }
marama_route/schemas/data_capsule.schema.json ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://abteex.com/schemas/sovereigncode/data-capsule.schema.json",
4
+ "title": "AbteeX SovereignCode Data Capsule",
5
+ "type": "object",
6
+ "required": ["capsule_id", "subject_id", "jurisdiction", "sensitivity"],
7
+ "additionalProperties": true,
8
+ "properties": {
9
+ "capsule_id": {
10
+ "type": "string",
11
+ "minLength": 1
12
+ },
13
+ "subject_id": {
14
+ "type": "string",
15
+ "minLength": 1
16
+ },
17
+ "jurisdiction": {
18
+ "type": "string",
19
+ "default": "NZ"
20
+ },
21
+ "sensitivity": {
22
+ "type": "string",
23
+ "enum": ["public", "internal", "restricted", "personal", "health", "iwi", "taonga"]
24
+ },
25
+ "allowed_purposes": {
26
+ "type": "array",
27
+ "items": { "type": "string" },
28
+ "default": ["inference", "coding_assistance"]
29
+ },
30
+ "denied_purposes": {
31
+ "type": "array",
32
+ "items": { "type": "string" },
33
+ "default": []
34
+ },
35
+ "resident_regions": {
36
+ "type": "array",
37
+ "items": { "type": "string" },
38
+ "default": ["NZ"]
39
+ },
40
+ "data_classes": {
41
+ "type": "array",
42
+ "items": { "type": "string" },
43
+ "default": ["source_code"]
44
+ },
45
+ "retention_days": {
46
+ "type": "integer",
47
+ "minimum": 0,
48
+ "default": 30
49
+ },
50
+ "export_allowed": {
51
+ "type": "boolean",
52
+ "default": false
53
+ },
54
+ "training_allowed": {
55
+ "type": "boolean",
56
+ "default": false
57
+ },
58
+ "personal_detail_level": {
59
+ "type": "string",
60
+ "enum": ["none", "anonymous", "pseudonymous", "identifiable", "sensitive_identifiable"],
61
+ "default": "none"
62
+ },
63
+ "consent_scopes": {
64
+ "type": "array",
65
+ "items": { "type": "string" },
66
+ "default": []
67
+ },
68
+ "data_subject_rights": {
69
+ "type": "array",
70
+ "items": { "type": "string" },
71
+ "default": ["access", "correction", "deletion_request", "processing_objection"]
72
+ },
73
+ "revoked": {
74
+ "type": "boolean",
75
+ "default": false
76
+ },
77
+ "schema_context": {
78
+ "type": "string",
79
+ "default": "https://schema.org"
80
+ },
81
+ "consent_record": {
82
+ "type": "string"
83
+ },
84
+ "metadata": {
85
+ "type": "object"
86
+ }
87
+ }
88
+ }
marama_route/schemas/openai_chat_route_request.schema.json ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://abteex.com/schemas/marama-route/openai-chat-route-request.schema.json",
4
+ "title": "MaramaRoute OpenAI-Compatible Chat Route Request",
5
+ "type": "object",
6
+ "required": ["messages"],
7
+ "additionalProperties": true,
8
+ "properties": {
9
+ "model": {
10
+ "type": "string",
11
+ "default": "lumynax/auto"
12
+ },
13
+ "messages": {
14
+ "type": "array",
15
+ "items": {
16
+ "type": "object",
17
+ "required": ["role", "content"],
18
+ "properties": {
19
+ "role": {
20
+ "type": "string"
21
+ },
22
+ "content": {}
23
+ },
24
+ "additionalProperties": true
25
+ }
26
+ },
27
+ "tools": {
28
+ "type": "array"
29
+ },
30
+ "response_format": {
31
+ "type": "object"
32
+ },
33
+ "route": {
34
+ "$ref": "#/$defs/routeOptions"
35
+ },
36
+ "routing": {
37
+ "$ref": "#/$defs/routeOptions"
38
+ },
39
+ "metadata": {
40
+ "type": "object",
41
+ "properties": {
42
+ "marama_route": {
43
+ "$ref": "#/$defs/routeOptions"
44
+ }
45
+ },
46
+ "additionalProperties": true
47
+ }
48
+ },
49
+ "$defs": {
50
+ "routeOptions": {
51
+ "type": "object",
52
+ "additionalProperties": true,
53
+ "properties": {
54
+ "jurisdiction": {
55
+ "type": "string",
56
+ "default": "NZ"
57
+ },
58
+ "data_sensitivity": {
59
+ "type": "string",
60
+ "default": "internal"
61
+ },
62
+ "task_type": {
63
+ "type": "string",
64
+ "enum": ["general", "code", "reasoning", "multimodal", "embedding"]
65
+ },
66
+ "min_context_tokens": {
67
+ "type": "integer",
68
+ "minimum": 1,
69
+ "default": 4096
70
+ },
71
+ "requires_local": {
72
+ "type": "boolean",
73
+ "default": true
74
+ },
75
+ "requires_tools": {
76
+ "type": "boolean",
77
+ "default": false
78
+ },
79
+ "requires_json": {
80
+ "type": "boolean",
81
+ "default": false
82
+ },
83
+ "license_allowlist": {
84
+ "type": "array",
85
+ "items": { "type": "string" }
86
+ },
87
+ "max_fallbacks": {
88
+ "type": "integer",
89
+ "minimum": 0,
90
+ "default": 3
91
+ }
92
+ }
93
+ }
94
+ }
95
+ }
marama_route/ui.py ADDED
@@ -0,0 +1,400 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from __future__ import annotations
2
+
3
+ import json
4
+ from pathlib import Path
5
+ from typing import Any
6
+
7
+ from ._ui_server import serve_dashboard
8
+
9
+ from .gateway import build_models_response, route_chat_payload
10
+ from .registry import RoutingRequest, load_model_registry
11
+ from .router import SovereignModelRouter
12
+
13
+ PRODUCT_NAME = "LumynaX MaramaRoute"
14
+ PACKAGE_ROOT = Path(__file__).resolve().parent
15
+ PACKAGE_PARENT = PACKAGE_ROOT.parent
16
+
17
+
18
+ def default_registry_path() -> Path:
19
+ candidates = [
20
+ Path.cwd() / "products" / "lumynax-marama-route" / "configs" / "lumynax_model_registry.json",
21
+ Path.cwd() / "configs" / "lumynax_model_registry.json",
22
+ PACKAGE_ROOT / "configs" / "lumynax_model_registry.json",
23
+ PACKAGE_PARENT / "configs" / "lumynax_model_registry.json",
24
+ ]
25
+ for path in candidates:
26
+ if path.exists():
27
+ return path
28
+ return candidates[0]
29
+
30
+
31
+ def default_openai_chat_request_path() -> Path:
32
+ candidates = [
33
+ Path.cwd() / "products" / "lumynax-marama-route" / "examples" / "request.openai-chat-code.json",
34
+ Path.cwd() / "examples" / "request.openai-chat-code.json",
35
+ PACKAGE_ROOT / "examples" / "request.openai-chat-code.json",
36
+ PACKAGE_PARENT / "examples" / "request.openai-chat-code.json",
37
+ ]
38
+ for path in candidates:
39
+ if path.exists():
40
+ return path
41
+ return candidates[0]
42
+
43
+
44
+ def load_json_mapping(path: Path) -> dict[str, Any]:
45
+ payload = json.loads(path.read_text(encoding="utf-8-sig"))
46
+ if not isinstance(payload, dict):
47
+ raise ValueError(f"Expected JSON object in {path}")
48
+ return payload
49
+
50
+
51
+ def route_dashboard_payload(payload: dict[str, Any], registry_path: Path) -> dict[str, Any]:
52
+ models = load_model_registry(registry_path)
53
+ if "messages" in payload:
54
+ result = route_chat_payload(payload, models)
55
+ selected = result["route_decision"]["selected_model"]
56
+ return {
57
+ "ok": selected is not None,
58
+ "mode": "openai_chat_dry_run",
59
+ **result,
60
+ }
61
+
62
+ request = RoutingRequest.from_payload(payload)
63
+ decision = SovereignModelRouter(models).route(request)
64
+ return {
65
+ "ok": decision.selected_model is not None,
66
+ "mode": "route",
67
+ "routing_request": request.to_dict(),
68
+ "route_decision": decision.to_dict(),
69
+ }
70
+
71
+
72
+ def build_dashboard_state(registry_path: Path) -> dict[str, Any]:
73
+ models = load_model_registry(registry_path)
74
+ example = (
75
+ load_json_mapping(default_openai_chat_request_path())
76
+ if default_openai_chat_request_path().exists()
77
+ else _fallback_chat_example()
78
+ )
79
+ runtimes = sorted({model.runtime for model in models})
80
+ resident_nz = sum(1 for model in models if "NZ" in model.residency)
81
+ return {
82
+ "registry_path": str(registry_path),
83
+ "model_count": len(models),
84
+ "resident_nz": resident_nz,
85
+ "runtimes": runtimes,
86
+ "example": example,
87
+ "models": build_models_response(models),
88
+ }
89
+
90
+
91
+ def handle_api_request(
92
+ method: str,
93
+ path: str,
94
+ payload: dict[str, Any] | None,
95
+ registry_path: Path,
96
+ ) -> tuple[int, dict[str, Any]]:
97
+ if method == "GET" and path == "/api/health":
98
+ state = build_dashboard_state(registry_path)
99
+ return 200, {"ok": True, "product": PRODUCT_NAME, "model_count": state["model_count"]}
100
+ if method == "GET" and path == "/api/models":
101
+ return 200, build_dashboard_state(registry_path)["models"]
102
+ if method == "GET" and path == "/api/state":
103
+ return 200, {"ok": True, **build_dashboard_state(registry_path)}
104
+ if method == "POST" and path == "/api/route" and payload is not None:
105
+ status = 200
106
+ result = route_dashboard_payload(payload, registry_path)
107
+ if not result["ok"]:
108
+ status = 422
109
+ return status, result
110
+ return 404, {"ok": False, "error": "not_found"}
111
+
112
+
113
+ def smoke_ui(registry_path: Path | None = None) -> dict[str, Any]:
114
+ resolved_registry = registry_path or default_registry_path()
115
+ state = build_dashboard_state(resolved_registry)
116
+ routed = route_dashboard_payload(state["example"], resolved_registry)
117
+ if not routed["ok"]:
118
+ raise RuntimeError("MaramaRoute UI smoke route did not select a model")
119
+ return {
120
+ "ok": True,
121
+ "product": PRODUCT_NAME,
122
+ "model_count": state["model_count"],
123
+ "selected_model": routed["route_decision"]["selected_model"]["model_id"],
124
+ }
125
+
126
+
127
+ def run_ui(
128
+ *,
129
+ registry_path: Path | None = None,
130
+ host: str = "127.0.0.1",
131
+ port: int = 8787,
132
+ open_browser: bool = False,
133
+ smoke: bool = False,
134
+ ) -> int:
135
+ resolved_registry = registry_path or default_registry_path()
136
+ if smoke:
137
+ print(json.dumps(smoke_ui(resolved_registry), indent=2, sort_keys=True))
138
+ return 0
139
+ html = build_dashboard_html(build_dashboard_state(resolved_registry))
140
+ return serve_dashboard(
141
+ product_name=PRODUCT_NAME,
142
+ html=html,
143
+ api_handler=lambda method, path, payload: handle_api_request(
144
+ method,
145
+ path,
146
+ payload,
147
+ resolved_registry,
148
+ ),
149
+ host=host,
150
+ port=port,
151
+ open_browser=open_browser,
152
+ )
153
+
154
+
155
+ def build_dashboard_html(state: dict[str, Any]) -> str:
156
+ initial = json.dumps(state, sort_keys=True).replace("</", "<\\/")
157
+ return f"""<!doctype html>
158
+ <html lang="en">
159
+ <head>
160
+ <meta charset="utf-8" />
161
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
162
+ <title>LumynaX MaramaRoute</title>
163
+ <style>
164
+ :root {{
165
+ --paper: #fffefa;
166
+ --ink: #0a0a0b;
167
+ --muted: #726b62;
168
+ --rule: #ded6c8;
169
+ --amber: #e08a2c;
170
+ --amber-dark: #9a5416;
171
+ --green: #275f45;
172
+ --red: #8f2e24;
173
+ --panel: #f7f1e7;
174
+ --mono: "Cascadia Code", "SFMono-Regular", Menlo, Consolas, monospace;
175
+ --serif: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
176
+ }}
177
+ * {{ box-sizing: border-box; }}
178
+ body {{
179
+ margin: 0;
180
+ background: var(--paper);
181
+ color: var(--ink);
182
+ font-family: var(--serif);
183
+ }}
184
+ .shell {{
185
+ min-height: 100vh;
186
+ display: grid;
187
+ grid-template-rows: auto 1fr;
188
+ }}
189
+ header {{
190
+ border-bottom: 1px solid var(--rule);
191
+ padding: 18px 28px 14px;
192
+ display: grid;
193
+ grid-template-columns: 1fr auto;
194
+ gap: 20px;
195
+ align-items: end;
196
+ }}
197
+ h1 {{
198
+ font-size: clamp(28px, 4vw, 48px);
199
+ line-height: .95;
200
+ margin: 0;
201
+ letter-spacing: 0;
202
+ font-weight: 700;
203
+ }}
204
+ .subtitle, .meta, label, button, select {{
205
+ font-family: var(--mono);
206
+ font-size: 12px;
207
+ letter-spacing: 0;
208
+ }}
209
+ .subtitle {{ color: var(--muted); margin-top: 8px; }}
210
+ .meta {{
211
+ display: grid;
212
+ grid-template-columns: repeat(3, minmax(110px, 1fr));
213
+ gap: 8px;
214
+ min-width: min(430px, 44vw);
215
+ }}
216
+ .metric {{
217
+ border-left: 2px solid var(--amber);
218
+ padding: 4px 0 4px 10px;
219
+ }}
220
+ .metric strong {{
221
+ display: block;
222
+ font-size: 20px;
223
+ font-family: var(--serif);
224
+ }}
225
+ main {{
226
+ display: grid;
227
+ grid-template-columns: minmax(330px, 42vw) 1fr;
228
+ min-height: 0;
229
+ }}
230
+ .left, .right {{ padding: 22px; min-width: 0; }}
231
+ .left {{ border-right: 1px solid var(--rule); background: #fffaf2; }}
232
+ .toolbar {{
233
+ display: flex;
234
+ gap: 8px;
235
+ align-items: center;
236
+ flex-wrap: wrap;
237
+ margin-bottom: 12px;
238
+ }}
239
+ textarea, pre, .card {{
240
+ border: 1px solid var(--rule);
241
+ background: var(--paper);
242
+ color: var(--ink);
243
+ border-radius: 6px;
244
+ }}
245
+ textarea {{
246
+ width: 100%;
247
+ min-height: 560px;
248
+ resize: vertical;
249
+ padding: 14px;
250
+ font-family: var(--mono);
251
+ font-size: 12px;
252
+ line-height: 1.45;
253
+ }}
254
+ button {{
255
+ appearance: none;
256
+ border: 1px solid var(--ink);
257
+ background: var(--ink);
258
+ color: var(--paper);
259
+ border-radius: 4px;
260
+ min-height: 34px;
261
+ padding: 0 12px;
262
+ cursor: pointer;
263
+ }}
264
+ button.secondary {{ background: transparent; color: var(--ink); border-color: var(--rule); }}
265
+ .status {{
266
+ display: grid;
267
+ grid-template-columns: repeat(3, minmax(0, 1fr));
268
+ gap: 10px;
269
+ margin-bottom: 14px;
270
+ }}
271
+ .card {{ padding: 14px; min-height: 86px; }}
272
+ .card b {{ display: block; font-size: 12px; font-family: var(--mono); color: var(--muted); }}
273
+ .card span {{ display: block; margin-top: 8px; font-size: 18px; overflow-wrap: anywhere; }}
274
+ pre {{
275
+ margin: 0;
276
+ padding: 16px;
277
+ min-height: 520px;
278
+ max-height: 68vh;
279
+ overflow: auto;
280
+ font-family: var(--mono);
281
+ font-size: 12px;
282
+ line-height: 1.45;
283
+ }}
284
+ .ok {{ color: var(--green); }}
285
+ .bad {{ color: var(--red); }}
286
+ @media (max-width: 920px) {{
287
+ header, main {{ grid-template-columns: 1fr; }}
288
+ .meta {{ min-width: 0; grid-template-columns: repeat(3, 1fr); }}
289
+ .left {{ border-right: 0; border-bottom: 1px solid var(--rule); }}
290
+ textarea {{ min-height: 360px; }}
291
+ }}
292
+ </style>
293
+ </head>
294
+ <body>
295
+ <div class="shell">
296
+ <header>
297
+ <div>
298
+ <h1>LumynaX<br />MaramaRoute</h1>
299
+ <div class="subtitle">Sovereign model router - OpenAI-compatible route decisions</div>
300
+ </div>
301
+ <div class="meta">
302
+ <div class="metric"><strong id="modelCount">0</strong>models</div>
303
+ <div class="metric"><strong id="residentCount">0</strong>NZ resident</div>
304
+ <div class="metric"><strong id="runtimeCount">0</strong>runtimes</div>
305
+ </div>
306
+ </header>
307
+ <main>
308
+ <section class="left">
309
+ <div class="toolbar">
310
+ <button id="routeBtn">Route</button>
311
+ <button class="secondary" id="exampleBtn">Example</button>
312
+ <button class="secondary" id="modelsBtn">Models</button>
313
+ </div>
314
+ <label for="request">REQUEST JSON</label>
315
+ <textarea id="request" spellcheck="false"></textarea>
316
+ </section>
317
+ <section class="right">
318
+ <div class="status">
319
+ <div class="card"><b>SELECTED</b><span id="selected">pending</span></div>
320
+ <div class="card"><b>MODE</b><span id="mode">pending</span></div>
321
+ <div class="card"><b>REJECTED</b><span id="rejected">0</span></div>
322
+ </div>
323
+ <pre id="output"></pre>
324
+ </section>
325
+ </main>
326
+ </div>
327
+ <script type="application/json" id="initial-state">{initial}</script>
328
+ <script>
329
+ const state = JSON.parse(document.getElementById('initial-state').textContent);
330
+ const request = document.getElementById('request');
331
+ const output = document.getElementById('output');
332
+ const selected = document.getElementById('selected');
333
+ const mode = document.getElementById('mode');
334
+ const rejected = document.getElementById('rejected');
335
+ document.getElementById('modelCount').textContent = state.model_count;
336
+ document.getElementById('residentCount').textContent = state.resident_nz;
337
+ document.getElementById('runtimeCount').textContent = state.runtimes.length;
338
+ request.value = JSON.stringify(state.example, null, 2);
339
+ output.textContent = JSON.stringify({{status: 'ready', registry: state.registry_path}}, null, 2);
340
+
341
+ function setResult(data) {{
342
+ output.textContent = JSON.stringify(data, null, 2);
343
+ const decision = data.route_decision || {{}};
344
+ const model = decision.selected_model || (data.marama_route || {{}}).selected_model;
345
+ selected.textContent = model ? model.model_id : 'none';
346
+ selected.className = model ? 'ok' : 'bad';
347
+ mode.textContent = data.mode || 'models';
348
+ rejected.textContent = decision.rejected ? decision.rejected.length : 0;
349
+ }}
350
+
351
+ async function postRoute() {{
352
+ let payload;
353
+ try {{
354
+ payload = JSON.parse(request.value);
355
+ }} catch (error) {{
356
+ setResult({{ok: false, error: error.message}});
357
+ return;
358
+ }}
359
+ const response = await fetch('/api/route', {{
360
+ method: 'POST',
361
+ headers: {{'Content-Type': 'application/json'}},
362
+ body: JSON.stringify(payload)
363
+ }});
364
+ setResult(await response.json());
365
+ }}
366
+
367
+ async function getModels() {{
368
+ const response = await fetch('/api/models');
369
+ setResult(await response.json());
370
+ }}
371
+
372
+ document.getElementById('routeBtn').addEventListener('click', postRoute);
373
+ document.getElementById('exampleBtn').addEventListener('click', () => {{
374
+ request.value = JSON.stringify(state.example, null, 2);
375
+ }});
376
+ document.getElementById('modelsBtn').addEventListener('click', getModels);
377
+ </script>
378
+ </body>
379
+ </html>"""
380
+
381
+
382
+ def _fallback_chat_example() -> dict[str, Any]:
383
+ return {
384
+ "model": "lumynax/code",
385
+ "messages": [
386
+ {
387
+ "role": "user",
388
+ "content": "Refactor this private Python service and return a JSON diff plan.",
389
+ },
390
+ ],
391
+ "response_format": {"type": "json_object"},
392
+ "route": {
393
+ "jurisdiction": "NZ",
394
+ "data_sensitivity": "restricted",
395
+ "task_type": "code",
396
+ "requires_local": True,
397
+ "requires_json": True,
398
+ "max_fallbacks": 3,
399
+ },
400
+ }
product_manifest.json CHANGED
@@ -25,14 +25,16 @@
25
  ],
26
  "runtime_entrypoints": [
27
  "python -m tinyluminax.products.sovereigncode.cli evaluate",
28
- "python -m tinyluminax.products.sovereigncode.cli plan-turn"
 
29
  ],
30
  "integration_surfaces": [
31
  "OpenAI-compatible /v1/chat/completions via MaramaRoute",
32
  "OpenAI-compatible /v1/models via MaramaRoute",
33
  "OpenCode custom provider config",
34
  "local CLI policy evaluator",
35
- "governed coding-turn planner"
 
36
  ],
37
  "brand_system": {
38
  "paper": "#fffefa",
 
25
  ],
26
  "runtime_entrypoints": [
27
  "python -m tinyluminax.products.sovereigncode.cli evaluate",
28
+ "python -m tinyluminax.products.sovereigncode.cli plan-turn",
29
+ "python -m tinyluminax.products.sovereigncode.cli ui"
30
  ],
31
  "integration_surfaces": [
32
  "OpenAI-compatible /v1/chat/completions via MaramaRoute",
33
  "OpenAI-compatible /v1/models via MaramaRoute",
34
  "OpenCode custom provider config",
35
  "local CLI policy evaluator",
36
+ "governed coding-turn planner",
37
+ "browser operator console"
38
  ],
39
  "brand_system": {
40
  "paper": "#fffefa",
pyproject.toml CHANGED
@@ -8,7 +8,7 @@ version = "0.2.0"
8
  description = "AbteeX SovereignCode: local-first coding agent with Data Capsule sovereignty controls."
9
  readme = "README.md"
10
  requires-python = ">=3.11"
11
- license = { text = "Apache-2.0" }
12
  authors = [{ name = "AbteeX AI Labs" }]
13
  keywords = ["lumynax", "sovereignty", "data-capsule", "coding-agent", "opencode", "new-zealand"]
14
  dependencies = ["PyYAML>=6.0"]
@@ -20,3 +20,12 @@ Lumynax = "https://lumynax.com"
20
 
21
  [project.scripts]
22
  sovereigncode = "sovereigncode.cli:main"
 
 
 
 
 
 
 
 
 
 
8
  description = "AbteeX SovereignCode: local-first coding agent with Data Capsule sovereignty controls."
9
  readme = "README.md"
10
  requires-python = ">=3.11"
11
+ license = "Apache-2.0"
12
  authors = [{ name = "AbteeX AI Labs" }]
13
  keywords = ["lumynax", "sovereignty", "data-capsule", "coding-agent", "opencode", "new-zealand"]
14
  dependencies = ["PyYAML>=6.0"]
 
20
 
21
  [project.scripts]
22
  sovereigncode = "sovereigncode.cli:main"
23
+
24
+ [tool.setuptools.packages.find]
25
+ where = ["."]
26
+ include = ["sovereigncode*", "marama_route*"]
27
+ namespaces = true
28
+
29
+ [tool.setuptools.package-data]
30
+ sovereigncode = ["configs/*", "examples/*", "integrations/*", "policy-packs/*", "schemas/*"]
31
+ marama_route = ["configs/*", "examples/*", "integrations/*", "schemas/*"]
quickstart.py CHANGED
@@ -24,6 +24,10 @@ if __name__ == "__main__":
24
  "--request",
25
  str(ROOT / "examples" / "request.allowed-local-edit.json"),
26
  ],
 
 
 
 
27
  [
28
  "plan-turn",
29
  "--capsule",
 
24
  "--request",
25
  str(ROOT / "examples" / "request.allowed-local-edit.json"),
26
  ],
27
+ [
28
+ "ui",
29
+ "--smoke",
30
+ ],
31
  [
32
  "plan-turn",
33
  "--capsule",
schemas/openai_chat_route_request.schema.json ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://abteex.com/schemas/marama-route/openai-chat-route-request.schema.json",
4
+ "title": "MaramaRoute OpenAI-Compatible Chat Route Request",
5
+ "type": "object",
6
+ "required": ["messages"],
7
+ "additionalProperties": true,
8
+ "properties": {
9
+ "model": {
10
+ "type": "string",
11
+ "default": "lumynax/auto"
12
+ },
13
+ "messages": {
14
+ "type": "array",
15
+ "items": {
16
+ "type": "object",
17
+ "required": ["role", "content"],
18
+ "properties": {
19
+ "role": {
20
+ "type": "string"
21
+ },
22
+ "content": {}
23
+ },
24
+ "additionalProperties": true
25
+ }
26
+ },
27
+ "tools": {
28
+ "type": "array"
29
+ },
30
+ "response_format": {
31
+ "type": "object"
32
+ },
33
+ "route": {
34
+ "$ref": "#/$defs/routeOptions"
35
+ },
36
+ "routing": {
37
+ "$ref": "#/$defs/routeOptions"
38
+ },
39
+ "metadata": {
40
+ "type": "object",
41
+ "properties": {
42
+ "marama_route": {
43
+ "$ref": "#/$defs/routeOptions"
44
+ }
45
+ },
46
+ "additionalProperties": true
47
+ }
48
+ },
49
+ "$defs": {
50
+ "routeOptions": {
51
+ "type": "object",
52
+ "additionalProperties": true,
53
+ "properties": {
54
+ "jurisdiction": {
55
+ "type": "string",
56
+ "default": "NZ"
57
+ },
58
+ "data_sensitivity": {
59
+ "type": "string",
60
+ "default": "internal"
61
+ },
62
+ "task_type": {
63
+ "type": "string",
64
+ "enum": ["general", "code", "reasoning", "multimodal", "embedding"]
65
+ },
66
+ "min_context_tokens": {
67
+ "type": "integer",
68
+ "minimum": 1,
69
+ "default": 4096
70
+ },
71
+ "requires_local": {
72
+ "type": "boolean",
73
+ "default": true
74
+ },
75
+ "requires_tools": {
76
+ "type": "boolean",
77
+ "default": false
78
+ },
79
+ "requires_json": {
80
+ "type": "boolean",
81
+ "default": false
82
+ },
83
+ "license_allowlist": {
84
+ "type": "array",
85
+ "items": { "type": "string" }
86
+ },
87
+ "max_fallbacks": {
88
+ "type": "integer",
89
+ "minimum": 0,
90
+ "default": 3
91
+ }
92
+ }
93
+ }
94
+ }
95
+ }
sovereigncode/__init__.py CHANGED
@@ -8,6 +8,7 @@ from .policy import (
8
  SovereignRequest,
9
  SovereigntyPolicyEngine,
10
  )
 
11
 
12
  __all__ = [
13
  "AuditRecord",
@@ -19,4 +20,5 @@ __all__ = [
19
  "ToolGrant",
20
  "build_audit_record",
21
  "plan_coding_turn",
 
22
  ]
 
8
  SovereignRequest,
9
  SovereigntyPolicyEngine,
10
  )
11
+ from .ui import smoke_ui as smoke_ui
12
 
13
  __all__ = [
14
  "AuditRecord",
 
20
  "ToolGrant",
21
  "build_audit_record",
22
  "plan_coding_turn",
23
+ "smoke_ui",
24
  ]
sovereigncode/_ui_server.py ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from __future__ import annotations
2
+
3
+ import json
4
+ import socket
5
+ import webbrowser
6
+ from collections.abc import Callable
7
+ from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer
8
+ from typing import Any
9
+ from urllib.parse import urlparse
10
+
11
+ ApiHandler = Callable[[str, str, dict[str, Any] | None], tuple[int, dict[str, Any]]]
12
+
13
+
14
+ def find_available_port(host: str, preferred_port: int, *, attempts: int = 50) -> int:
15
+ start = preferred_port if preferred_port > 0 else 0
16
+ if start == 0:
17
+ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as probe:
18
+ probe.bind((host, 0))
19
+ return int(probe.getsockname()[1])
20
+
21
+ for port in range(start, start + attempts):
22
+ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as probe:
23
+ probe.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
24
+ try:
25
+ probe.bind((host, port))
26
+ except OSError:
27
+ continue
28
+ return port
29
+ raise OSError(f"No available port found from {preferred_port} to {preferred_port + attempts - 1}")
30
+
31
+
32
+ def serve_dashboard(
33
+ *,
34
+ product_name: str,
35
+ html: str,
36
+ api_handler: ApiHandler,
37
+ host: str,
38
+ port: int,
39
+ open_browser: bool = False,
40
+ ) -> int:
41
+ actual_port = find_available_port(host, port)
42
+
43
+ class Handler(BaseHTTPRequestHandler):
44
+ server_version = "AbteeXProductUI/0.1"
45
+
46
+ def do_GET(self) -> None: # noqa: N802 - stdlib handler method name
47
+ path = urlparse(self.path).path
48
+ if path == "/":
49
+ self._send_text(200, html, "text/html; charset=utf-8")
50
+ return
51
+ if path.startswith("/api/"):
52
+ self._send_api("GET", path, None)
53
+ return
54
+ self._send_json(404, {"ok": False, "error": "not_found"})
55
+
56
+ def do_POST(self) -> None: # noqa: N802 - stdlib handler method name
57
+ path = urlparse(self.path).path
58
+ if not path.startswith("/api/"):
59
+ self._send_json(404, {"ok": False, "error": "not_found"})
60
+ return
61
+ try:
62
+ length = int(self.headers.get("Content-Length", "0"))
63
+ raw = self.rfile.read(length).decode("utf-8") if length else "{}"
64
+ payload = json.loads(raw)
65
+ if not isinstance(payload, dict):
66
+ raise ValueError("JSON body must be an object")
67
+ self._send_api("POST", path, payload)
68
+ except Exception as exc: # defensive API boundary
69
+ self._send_json(400, {"ok": False, "error": str(exc)})
70
+
71
+ def log_message(self, format: str, *args: Any) -> None: # noqa: A002
72
+ return
73
+
74
+ def _send_api(
75
+ self,
76
+ method: str,
77
+ path: str,
78
+ payload: dict[str, Any] | None,
79
+ ) -> None:
80
+ try:
81
+ status, response = api_handler(method, path, payload)
82
+ except Exception as exc: # defensive API boundary
83
+ status, response = 500, {"ok": False, "error": str(exc)}
84
+ self._send_json(status, response)
85
+
86
+ def _send_json(self, status: int, payload: dict[str, Any]) -> None:
87
+ body = json.dumps(payload, indent=2, sort_keys=True).encode("utf-8")
88
+ self.send_response(status)
89
+ self.send_header("Content-Type", "application/json; charset=utf-8")
90
+ self.send_header("Content-Length", str(len(body)))
91
+ self.send_header("Cache-Control", "no-store")
92
+ self.end_headers()
93
+ self.wfile.write(body)
94
+
95
+ def _send_text(self, status: int, body: str, content_type: str) -> None:
96
+ encoded = body.encode("utf-8")
97
+ self.send_response(status)
98
+ self.send_header("Content-Type", content_type)
99
+ self.send_header("Content-Length", str(len(encoded)))
100
+ self.send_header("Cache-Control", "no-store")
101
+ self.end_headers()
102
+ self.wfile.write(encoded)
103
+
104
+ server = ThreadingHTTPServer((host, actual_port), Handler)
105
+ url = f"http://{host}:{actual_port}/"
106
+ print(f"{product_name} UI listening on {url}")
107
+ if open_browser:
108
+ webbrowser.open(url)
109
+ try:
110
+ server.serve_forever()
111
+ except KeyboardInterrupt:
112
+ print(f"{product_name} UI stopped")
113
+ finally:
114
+ server.server_close()
115
+ return 0
sovereigncode/cli.py CHANGED
@@ -47,6 +47,21 @@ def _plan_turn(args: argparse.Namespace) -> int:
47
  return 0 if plan.allowed or args.allow_blocked_exit_zero else 2
48
 
49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  def build_parser() -> argparse.ArgumentParser:
51
  parser = argparse.ArgumentParser(
52
  prog="abteex-sovereigncode",
@@ -90,6 +105,20 @@ def build_parser() -> argparse.ArgumentParser:
90
  help="Return exit code 0 even when the planned turn is blocked.",
91
  )
92
  plan_turn.set_defaults(handler=_plan_turn)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  return parser
94
 
95
 
 
47
  return 0 if plan.allowed or args.allow_blocked_exit_zero else 2
48
 
49
 
50
+ def _ui(args: argparse.Namespace) -> int:
51
+ from .ui import run_ui
52
+
53
+ return run_ui(
54
+ capsule_path=args.capsule,
55
+ request_path=args.request,
56
+ route_request_path=args.route_request,
57
+ registry_path=args.registry,
58
+ host=args.host,
59
+ port=args.port,
60
+ open_browser=args.open,
61
+ smoke=args.smoke,
62
+ )
63
+
64
+
65
  def build_parser() -> argparse.ArgumentParser:
66
  parser = argparse.ArgumentParser(
67
  prog="abteex-sovereigncode",
 
105
  help="Return exit code 0 even when the planned turn is blocked.",
106
  )
107
  plan_turn.set_defaults(handler=_plan_turn)
108
+
109
+ ui = subparsers.add_parser(
110
+ "ui",
111
+ help="Launch the local SovereignCode browser platform.",
112
+ )
113
+ ui.add_argument("--capsule", type=Path, default=None, help="Data Capsule JSON/YAML file.")
114
+ ui.add_argument("--request", type=Path, default=None, help="Sovereign request JSON/YAML file.")
115
+ ui.add_argument("--route-request", type=Path, default=None, help="MaramaRoute routing request JSON.")
116
+ ui.add_argument("--registry", type=Path, default=None, help="MaramaRoute model registry JSON.")
117
+ ui.add_argument("--host", type=str, default="127.0.0.1")
118
+ ui.add_argument("--port", type=int, default=8788)
119
+ ui.add_argument("--open", action=argparse.BooleanOptionalAction, default=False)
120
+ ui.add_argument("--smoke", action=argparse.BooleanOptionalAction, default=False)
121
+ ui.set_defaults(handler=_ui)
122
  return parser
123
 
124
 
sovereigncode/configs/default_policy.yaml ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ policy_id: abx-sovereigncode-default-v0
2
+ default_jurisdiction: NZ
3
+ default_resident_regions:
4
+ - NZ
5
+ high_impact_sensitivity:
6
+ - personal
7
+ - restricted
8
+ - health
9
+ - iwi
10
+ - taonga
11
+ default_obligations:
12
+ - write_immutable_audit_record
13
+ - preserve_capsule_id_in_agent_trace
14
+ - show_diff_before_write_or_commit
15
+ denied_without_human_approval:
16
+ - delete_file
17
+ - execute_shell
18
+ - network_export
19
+ - publish
20
+ - commit
21
+ remote_model_rule:
22
+ restricted_data_requires_local_or_lumynax: true
23
+ training_rule:
24
+ requires_capsule_training_allowed: true
25
+ export_rule:
26
+ requires_capsule_export_allowed: true
sovereigncode/configs/lumynax_model_registry.json ADDED
@@ -0,0 +1,3251 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "registry_id": "lumynax-marama-route-registry-v0",
3
+ "publisher": "AbteeX AI Labs",
4
+ "source_report": "docs/releases/hf-model-card-v4-refresh-2026-05-11.json",
5
+ "model_count": 82,
6
+ "models": [
7
+ {
8
+ "model_id": "lumynax-coder-qwen25-05b-instruct-gguf",
9
+ "repo_id": "AbteeXAILab/lumynax-coder-qwen25-05b-instruct-gguf",
10
+ "title": "LumynaX Coder Qwen2.5 0.5B Instruct GGUF",
11
+ "family": "qwen",
12
+ "runtime": "llama_cpp",
13
+ "modalities": [
14
+ "text"
15
+ ],
16
+ "context_tokens": 32768,
17
+ "jurisdiction": "NZ",
18
+ "residency": [
19
+ "NZ"
20
+ ],
21
+ "license_id": "see_model_card",
22
+ "quantization": "see_release_manifest",
23
+ "primary_artifact": "qwen2.5-coder-0.5b-instruct-q4_k_m.gguf",
24
+ "active_params_b": null,
25
+ "total_params_b": 0.5,
26
+ "quality_rank": 5,
27
+ "cost_rank": 2,
28
+ "sovereignty_tier": 3,
29
+ "supports_tools": true,
30
+ "supports_json": true,
31
+ "tags": [
32
+ "coder",
33
+ "gguf",
34
+ "lumynax",
35
+ "qwen",
36
+ "text"
37
+ ],
38
+ "metadata": {
39
+ "hub_sha": "81c904af42045aeac88fa843b8f653d79afa0422",
40
+ "package_state": "prebuilt_gguf_release",
41
+ "public_status": "public and non-gated",
42
+ "validation_status": "pass",
43
+ "total_weight_size": 491400064
44
+ }
45
+ },
46
+ {
47
+ "model_id": "lumynax-coder-qwen25-14b-instruct-gguf",
48
+ "repo_id": "AbteeXAILab/lumynax-coder-qwen25-14b-instruct-gguf",
49
+ "title": "LumynaX Coder Qwen2.5 14B Instruct GGUF",
50
+ "family": "qwen",
51
+ "runtime": "llama_cpp",
52
+ "modalities": [
53
+ "text"
54
+ ],
55
+ "context_tokens": 32768,
56
+ "jurisdiction": "NZ",
57
+ "residency": [
58
+ "NZ"
59
+ ],
60
+ "license_id": "see_model_card",
61
+ "quantization": "see_release_manifest",
62
+ "primary_artifact": "qwen2.5-coder-14b-instruct-q4_k_m.gguf",
63
+ "active_params_b": null,
64
+ "total_params_b": 14.0,
65
+ "quality_rank": 2,
66
+ "cost_rank": 6,
67
+ "sovereignty_tier": 3,
68
+ "supports_tools": true,
69
+ "supports_json": true,
70
+ "tags": [
71
+ "coder",
72
+ "gguf",
73
+ "lumynax",
74
+ "qwen",
75
+ "text"
76
+ ],
77
+ "metadata": {
78
+ "hub_sha": "e408c607528af8457900e4237b26184612f16e49",
79
+ "package_state": "prebuilt_gguf_release",
80
+ "public_status": "public and non-gated",
81
+ "validation_status": "pass",
82
+ "total_weight_size": 8988110272
83
+ }
84
+ },
85
+ {
86
+ "model_id": "lumynax-coder-qwen25-15b-instruct-gguf",
87
+ "repo_id": "AbteeXAILab/lumynax-coder-qwen25-15b-instruct-gguf",
88
+ "title": "LumynaX Coder Qwen2.5 1.5B Instruct GGUF",
89
+ "family": "qwen",
90
+ "runtime": "llama_cpp",
91
+ "modalities": [
92
+ "text"
93
+ ],
94
+ "context_tokens": 32768,
95
+ "jurisdiction": "NZ",
96
+ "residency": [
97
+ "NZ"
98
+ ],
99
+ "license_id": "see_model_card",
100
+ "quantization": "see_release_manifest",
101
+ "primary_artifact": "qwen2.5-coder-1.5b-instruct-q4_k_m.gguf",
102
+ "active_params_b": null,
103
+ "total_params_b": 1.5,
104
+ "quality_rank": 5,
105
+ "cost_rank": 4,
106
+ "sovereignty_tier": 3,
107
+ "supports_tools": true,
108
+ "supports_json": true,
109
+ "tags": [
110
+ "coder",
111
+ "gguf",
112
+ "lumynax",
113
+ "qwen",
114
+ "text"
115
+ ],
116
+ "metadata": {
117
+ "hub_sha": "cbe84212ed061b79297683f6d6247fd22f1fde7c",
118
+ "package_state": "prebuilt_gguf_release",
119
+ "public_status": "public and non-gated",
120
+ "validation_status": "pass",
121
+ "total_weight_size": 1117320768
122
+ }
123
+ },
124
+ {
125
+ "model_id": "lumynax-coder-qwen25-7b-instruct-gguf",
126
+ "repo_id": "AbteeXAILab/lumynax-coder-qwen25-7b-instruct-gguf",
127
+ "title": "LumynaX Coder Qwen2.5 7B Instruct GGUF",
128
+ "family": "qwen",
129
+ "runtime": "llama_cpp",
130
+ "modalities": [
131
+ "text"
132
+ ],
133
+ "context_tokens": 32768,
134
+ "jurisdiction": "NZ",
135
+ "residency": [
136
+ "NZ"
137
+ ],
138
+ "license_id": "see_model_card",
139
+ "quantization": "see_release_manifest",
140
+ "primary_artifact": "qwen2.5-coder-7b-instruct-q4_k_m.gguf",
141
+ "active_params_b": null,
142
+ "total_params_b": 7.0,
143
+ "quality_rank": 3,
144
+ "cost_rank": 6,
145
+ "sovereignty_tier": 3,
146
+ "supports_tools": true,
147
+ "supports_json": true,
148
+ "tags": [
149
+ "coder",
150
+ "gguf",
151
+ "lumynax",
152
+ "qwen",
153
+ "text"
154
+ ],
155
+ "metadata": {
156
+ "hub_sha": "fe5491063e09af13dbdb7fa6cef7f57d5cecc14d",
157
+ "package_state": "prebuilt_gguf_release",
158
+ "public_status": "public and non-gated",
159
+ "validation_status": "pass",
160
+ "total_weight_size": 4683073536
161
+ }
162
+ },
163
+ {
164
+ "model_id": "lumynax-embed-bge-m3",
165
+ "repo_id": "AbteeXAILab/lumynax-embed-bge-m3",
166
+ "title": "LumynaX Embed BGE M3",
167
+ "family": "embedding",
168
+ "runtime": "python_embedding",
169
+ "modalities": [
170
+ "text",
171
+ "embedding"
172
+ ],
173
+ "context_tokens": 8192,
174
+ "jurisdiction": "NZ",
175
+ "residency": [
176
+ "NZ"
177
+ ],
178
+ "license_id": "see_model_card",
179
+ "quantization": "see_release_manifest",
180
+ "primary_artifact": "merged_model/pytorch_model.bin",
181
+ "active_params_b": null,
182
+ "total_params_b": null,
183
+ "quality_rank": 4,
184
+ "cost_rank": 4,
185
+ "sovereignty_tier": 2,
186
+ "supports_tools": false,
187
+ "supports_json": false,
188
+ "tags": [
189
+ "embedding",
190
+ "lumynax",
191
+ "text"
192
+ ],
193
+ "metadata": {
194
+ "hub_sha": "05011e1f7ea9cbd714c8fef86695a498685750a8",
195
+ "package_state": "upstream_weights_hydrated_embedding",
196
+ "public_status": "public and non-gated",
197
+ "validation_status": "pass",
198
+ "total_weight_size": 2273250020
199
+ }
200
+ },
201
+ {
202
+ "model_id": "lumynax-embed-e5-mistral-7b",
203
+ "repo_id": "AbteeXAILab/lumynax-embed-e5-mistral-7b",
204
+ "title": "LumynaX Embed E5 Mistral 7B",
205
+ "family": "mistral",
206
+ "runtime": "python_embedding",
207
+ "modalities": [
208
+ "text",
209
+ "embedding"
210
+ ],
211
+ "context_tokens": 8192,
212
+ "jurisdiction": "NZ",
213
+ "residency": [
214
+ "NZ"
215
+ ],
216
+ "license_id": "see_model_card",
217
+ "quantization": "see_release_manifest",
218
+ "primary_artifact": "merged_model/model-00001-of-00002.safetensors",
219
+ "active_params_b": null,
220
+ "total_params_b": 7.0,
221
+ "quality_rank": 3,
222
+ "cost_rank": 8,
223
+ "sovereignty_tier": 2,
224
+ "supports_tools": false,
225
+ "supports_json": false,
226
+ "tags": [
227
+ "embedding",
228
+ "lumynax",
229
+ "mistral",
230
+ "text"
231
+ ],
232
+ "metadata": {
233
+ "hub_sha": "0c8fc35c248b9bbc951df8904c97f41c51a883c2",
234
+ "package_state": "upstream_weights_hydrated_embedding",
235
+ "public_status": "public and non-gated",
236
+ "validation_status": "pass",
237
+ "total_weight_size": 14221351904
238
+ }
239
+ },
240
+ {
241
+ "model_id": "lumynax-frontier-minimax-m25-unsloth",
242
+ "repo_id": "AbteeXAILab/lumynax-frontier-minimax-m25-unsloth",
243
+ "title": "LumynaX Frontier MiniMax M2.5 Unsloth",
244
+ "family": "minimax",
245
+ "runtime": "llama_cpp",
246
+ "modalities": [
247
+ "text"
248
+ ],
249
+ "context_tokens": 8192,
250
+ "jurisdiction": "NZ",
251
+ "residency": [
252
+ "NZ"
253
+ ],
254
+ "license_id": "see_model_card",
255
+ "quantization": "see_release_manifest",
256
+ "primary_artifact": "MiniMax-M2.5-UD-TQ1_0.gguf",
257
+ "active_params_b": null,
258
+ "total_params_b": null,
259
+ "quality_rank": 1,
260
+ "cost_rank": 10,
261
+ "sovereignty_tier": 3,
262
+ "supports_tools": false,
263
+ "supports_json": true,
264
+ "tags": [
265
+ "frontier",
266
+ "general",
267
+ "lumynax",
268
+ "text"
269
+ ],
270
+ "metadata": {
271
+ "hub_sha": "ff328be463825aedd9cec5b8f5fe3fce47f7547f",
272
+ "package_state": "prebuilt_gguf_release",
273
+ "public_status": "public and non-gated",
274
+ "validation_status": "pass",
275
+ "total_weight_size": 55765943424
276
+ }
277
+ },
278
+ {
279
+ "model_id": "lumynax-infused-gemma-e4b",
280
+ "repo_id": "AbteeXAILab/lumynax-infused-gemma-e4b",
281
+ "title": "LumynaX Infused Gemma E4B Model",
282
+ "family": "gemma",
283
+ "runtime": "transformers_multimodal",
284
+ "modalities": [
285
+ "text",
286
+ "image",
287
+ "audio"
288
+ ],
289
+ "context_tokens": 4096,
290
+ "jurisdiction": "NZ",
291
+ "residency": [
292
+ "NZ"
293
+ ],
294
+ "license_id": "see_model_card",
295
+ "quantization": "see_release_manifest",
296
+ "primary_artifact": "merged_model/model.safetensors",
297
+ "active_params_b": null,
298
+ "total_params_b": 4.0,
299
+ "quality_rank": 3,
300
+ "cost_rank": 8,
301
+ "sovereignty_tier": 2,
302
+ "supports_tools": false,
303
+ "supports_json": true,
304
+ "tags": [
305
+ "audio",
306
+ "gemma",
307
+ "general",
308
+ "image",
309
+ "lumynax",
310
+ "text"
311
+ ],
312
+ "metadata": {
313
+ "hub_sha": "71c0d98bc3ac1b90d3d59dbc5505910e6edef6a6",
314
+ "package_state": "base_weights_hydrated",
315
+ "public_status": "public and non-gated",
316
+ "validation_status": "pass",
317
+ "total_weight_size": 15992595884
318
+ }
319
+ },
320
+ {
321
+ "model_id": "lumynax-infused-gemma-e4b-text-gguf",
322
+ "repo_id": "AbteeXAILab/lumynax-infused-gemma-e4b-text-gguf",
323
+ "title": "LumynaX Infused Gemma E4B Text GGUF",
324
+ "family": "gemma",
325
+ "runtime": "llama_cpp",
326
+ "modalities": [
327
+ "text"
328
+ ],
329
+ "context_tokens": 8192,
330
+ "jurisdiction": "NZ",
331
+ "residency": [
332
+ "NZ"
333
+ ],
334
+ "license_id": "see_model_card",
335
+ "quantization": "see_release_manifest",
336
+ "primary_artifact": "lumynax-infused-gemma-e4b-text-gguf-q4_k_m.gguf",
337
+ "active_params_b": null,
338
+ "total_params_b": 4.0,
339
+ "quality_rank": 3,
340
+ "cost_rank": 6,
341
+ "sovereignty_tier": 3,
342
+ "supports_tools": false,
343
+ "supports_json": true,
344
+ "tags": [
345
+ "gemma",
346
+ "general",
347
+ "gguf",
348
+ "lumynax",
349
+ "text"
350
+ ],
351
+ "metadata": {
352
+ "hub_sha": "da670d4d4c080f93e37171d69f2e49cbe0740f4c",
353
+ "package_state": "hf_q4_runtime_bundle",
354
+ "public_status": "public and non-gated",
355
+ "validation_status": "pass",
356
+ "total_weight_size": 5335290080
357
+ }
358
+ },
359
+ {
360
+ "model_id": "lumynax-infused-gemma4-26b-a4b-gguf",
361
+ "repo_id": "AbteeXAILab/lumynax-infused-gemma4-26b-a4b-gguf",
362
+ "title": "LumynaX Infused Gemma4 26B A4B GGUF",
363
+ "family": "gemma",
364
+ "runtime": "llama_cpp",
365
+ "modalities": [
366
+ "text"
367
+ ],
368
+ "context_tokens": 8192,
369
+ "jurisdiction": "NZ",
370
+ "residency": [
371
+ "NZ"
372
+ ],
373
+ "license_id": "see_model_card",
374
+ "quantization": "see_release_manifest",
375
+ "primary_artifact": "lumynax-infused-gemma4-26b-a4b-ud-q4_k_m.gguf",
376
+ "active_params_b": 4.0,
377
+ "total_params_b": 26.0,
378
+ "quality_rank": 1,
379
+ "cost_rank": 8,
380
+ "sovereignty_tier": 3,
381
+ "supports_tools": false,
382
+ "supports_json": true,
383
+ "tags": [
384
+ "gemma",
385
+ "general",
386
+ "gguf",
387
+ "lumynax",
388
+ "text"
389
+ ],
390
+ "metadata": {
391
+ "hub_sha": "9ac3619aaa892edf714fad37d566dcc75e3c63e6",
392
+ "package_state": "prebuilt_gguf_release",
393
+ "public_status": "public and non-gated",
394
+ "validation_status": "pass",
395
+ "total_weight_size": 16947539744
396
+ }
397
+ },
398
+ {
399
+ "model_id": "lumynax-infused-granite31-1b-a400m-gguf",
400
+ "repo_id": "AbteeXAILab/lumynax-infused-granite31-1b-a400m-gguf",
401
+ "title": "LumynaX Infused Granite 3.1 1B A400M Instruct GGUF",
402
+ "family": "granite",
403
+ "runtime": "llama_cpp",
404
+ "modalities": [
405
+ "text"
406
+ ],
407
+ "context_tokens": 8192,
408
+ "jurisdiction": "NZ",
409
+ "residency": [
410
+ "NZ"
411
+ ],
412
+ "license_id": "see_model_card",
413
+ "quantization": "see_release_manifest",
414
+ "primary_artifact": "granite-3.1-1b-a400m-instruct-Q4_K_M.gguf",
415
+ "active_params_b": null,
416
+ "total_params_b": 1.0,
417
+ "quality_rank": 5,
418
+ "cost_rank": 2,
419
+ "sovereignty_tier": 3,
420
+ "supports_tools": false,
421
+ "supports_json": true,
422
+ "tags": [
423
+ "general",
424
+ "gguf",
425
+ "granite",
426
+ "lumynax",
427
+ "text"
428
+ ],
429
+ "metadata": {
430
+ "hub_sha": "4962677e55c151eb9540257318fd640ce1f002e7",
431
+ "package_state": "prebuilt_gguf_release",
432
+ "public_status": "public and non-gated",
433
+ "validation_status": "pass",
434
+ "total_weight_size": 821847360
435
+ }
436
+ },
437
+ {
438
+ "model_id": "lumynax-infused-granite33-2b-gguf",
439
+ "repo_id": "AbteeXAILab/lumynax-infused-granite33-2b-gguf",
440
+ "title": "LumynaX Infused Granite 3.3 2B Instruct GGUF",
441
+ "family": "granite",
442
+ "runtime": "llama_cpp",
443
+ "modalities": [
444
+ "text"
445
+ ],
446
+ "context_tokens": 8192,
447
+ "jurisdiction": "NZ",
448
+ "residency": [
449
+ "NZ"
450
+ ],
451
+ "license_id": "see_model_card",
452
+ "quantization": "see_release_manifest",
453
+ "primary_artifact": "granite-3.3-2b-instruct-Q4_K_M.gguf",
454
+ "active_params_b": null,
455
+ "total_params_b": 2.0,
456
+ "quality_rank": 4,
457
+ "cost_rank": 4,
458
+ "sovereignty_tier": 3,
459
+ "supports_tools": false,
460
+ "supports_json": true,
461
+ "tags": [
462
+ "general",
463
+ "gguf",
464
+ "granite",
465
+ "lumynax",
466
+ "text"
467
+ ],
468
+ "metadata": {
469
+ "hub_sha": "008f69d6d7ed46cfa4a26e14f1a36ed7840ca86e",
470
+ "package_state": "prebuilt_gguf_release",
471
+ "public_status": "public and non-gated",
472
+ "validation_status": "pass",
473
+ "total_weight_size": 1545303328
474
+ }
475
+ },
476
+ {
477
+ "model_id": "lumynax-infused-granite33-8b-gguf",
478
+ "repo_id": "AbteeXAILab/lumynax-infused-granite33-8b-gguf",
479
+ "title": "LumynaX Infused Granite 3.3 8B Instruct GGUF",
480
+ "family": "granite",
481
+ "runtime": "llama_cpp",
482
+ "modalities": [
483
+ "text"
484
+ ],
485
+ "context_tokens": 8192,
486
+ "jurisdiction": "NZ",
487
+ "residency": [
488
+ "NZ"
489
+ ],
490
+ "license_id": "see_model_card",
491
+ "quantization": "see_release_manifest",
492
+ "primary_artifact": "granite-3.3-8b-instruct-Q4_K_M.gguf",
493
+ "active_params_b": null,
494
+ "total_params_b": 8.0,
495
+ "quality_rank": 3,
496
+ "cost_rank": 6,
497
+ "sovereignty_tier": 3,
498
+ "supports_tools": false,
499
+ "supports_json": true,
500
+ "tags": [
501
+ "general",
502
+ "gguf",
503
+ "granite",
504
+ "lumynax",
505
+ "text"
506
+ ],
507
+ "metadata": {
508
+ "hub_sha": "9a73a865e7121274789cee80e6543444e034bb01",
509
+ "package_state": "prebuilt_gguf_release",
510
+ "public_status": "public and non-gated",
511
+ "validation_status": "pass",
512
+ "total_weight_size": 4942873344
513
+ }
514
+ },
515
+ {
516
+ "model_id": "lumynax-infused-mistral-7b-v03-gguf",
517
+ "repo_id": "AbteeXAILab/lumynax-infused-mistral-7b-v03-gguf",
518
+ "title": "LumynaX Infused Mistral 7B Instruct v0.3 GGUF",
519
+ "family": "mistral",
520
+ "runtime": "llama_cpp",
521
+ "modalities": [
522
+ "text"
523
+ ],
524
+ "context_tokens": 8192,
525
+ "jurisdiction": "NZ",
526
+ "residency": [
527
+ "NZ"
528
+ ],
529
+ "license_id": "see_model_card",
530
+ "quantization": "see_release_manifest",
531
+ "primary_artifact": "Mistral-7B-Instruct-v0.3-Q4_K_M.gguf",
532
+ "active_params_b": null,
533
+ "total_params_b": 7.0,
534
+ "quality_rank": 3,
535
+ "cost_rank": 6,
536
+ "sovereignty_tier": 3,
537
+ "supports_tools": false,
538
+ "supports_json": true,
539
+ "tags": [
540
+ "general",
541
+ "gguf",
542
+ "lumynax",
543
+ "mistral",
544
+ "text"
545
+ ],
546
+ "metadata": {
547
+ "hub_sha": "b27abdbb78659b9577c68040838a4811bb2a4fc4",
548
+ "package_state": "prebuilt_gguf_release",
549
+ "public_status": "public and non-gated",
550
+ "validation_status": "pass",
551
+ "total_weight_size": 4372812000
552
+ }
553
+ },
554
+ {
555
+ "model_id": "lumynax-infused-mistral-small-text-gguf",
556
+ "repo_id": "AbteeXAILab/lumynax-infused-mistral-small-text-gguf",
557
+ "title": "LumynaX Infused Mistral Small Text GGUF",
558
+ "family": "mistral",
559
+ "runtime": "llama_cpp",
560
+ "modalities": [
561
+ "text"
562
+ ],
563
+ "context_tokens": 8192,
564
+ "jurisdiction": "NZ",
565
+ "residency": [
566
+ "NZ"
567
+ ],
568
+ "license_id": "see_model_card",
569
+ "quantization": "see_release_manifest",
570
+ "primary_artifact": "lumynax-infused-mistral-small-text-gguf-f16.gguf",
571
+ "active_params_b": null,
572
+ "total_params_b": null,
573
+ "quality_rank": 3,
574
+ "cost_rank": 10,
575
+ "sovereignty_tier": 3,
576
+ "supports_tools": false,
577
+ "supports_json": true,
578
+ "tags": [
579
+ "general",
580
+ "gguf",
581
+ "lumynax",
582
+ "mistral",
583
+ "text"
584
+ ],
585
+ "metadata": {
586
+ "hub_sha": "f0dcbb1666de6f53212277f225ca5eb0901d9627",
587
+ "package_state": "base_weights_hydrated_text_gguf",
588
+ "public_status": "public and non-gated",
589
+ "validation_status": "pass",
590
+ "total_weight_size": 61488486400
591
+ }
592
+ },
593
+ {
594
+ "model_id": "lumynax-infused-olmo2-1b-0425-gguf",
595
+ "repo_id": "AbteeXAILab/lumynax-infused-olmo2-1b-0425-gguf",
596
+ "title": "LumynaX Infused OLMo 2 0425 1B Instruct GGUF",
597
+ "family": "olmo",
598
+ "runtime": "llama_cpp",
599
+ "modalities": [
600
+ "text"
601
+ ],
602
+ "context_tokens": 8192,
603
+ "jurisdiction": "NZ",
604
+ "residency": [
605
+ "NZ"
606
+ ],
607
+ "license_id": "see_model_card",
608
+ "quantization": "see_release_manifest",
609
+ "primary_artifact": "OLMo-2-0425-1B-Instruct-Q4_K_M.gguf",
610
+ "active_params_b": null,
611
+ "total_params_b": 1.0,
612
+ "quality_rank": 5,
613
+ "cost_rank": 2,
614
+ "sovereignty_tier": 3,
615
+ "supports_tools": false,
616
+ "supports_json": true,
617
+ "tags": [
618
+ "general",
619
+ "gguf",
620
+ "lumynax",
621
+ "text"
622
+ ],
623
+ "metadata": {
624
+ "hub_sha": "6bbec139651766aaf4310e2affe44504a0bb3a02",
625
+ "package_state": "prebuilt_gguf_release",
626
+ "public_status": "public and non-gated",
627
+ "validation_status": "pass",
628
+ "total_weight_size": 935515296
629
+ }
630
+ },
631
+ {
632
+ "model_id": "lumynax-infused-olmo2-7b-1124-gguf",
633
+ "repo_id": "AbteeXAILab/lumynax-infused-olmo2-7b-1124-gguf",
634
+ "title": "LumynaX Infused OLMo 2 1124 7B Instruct GGUF",
635
+ "family": "olmo",
636
+ "runtime": "llama_cpp",
637
+ "modalities": [
638
+ "text"
639
+ ],
640
+ "context_tokens": 8192,
641
+ "jurisdiction": "NZ",
642
+ "residency": [
643
+ "NZ"
644
+ ],
645
+ "license_id": "see_model_card",
646
+ "quantization": "see_release_manifest",
647
+ "primary_artifact": "olmo-2-1124-7B-instruct-Q4_K_M.gguf",
648
+ "active_params_b": null,
649
+ "total_params_b": 7.0,
650
+ "quality_rank": 3,
651
+ "cost_rank": 6,
652
+ "sovereignty_tier": 3,
653
+ "supports_tools": false,
654
+ "supports_json": true,
655
+ "tags": [
656
+ "general",
657
+ "gguf",
658
+ "lumynax",
659
+ "text"
660
+ ],
661
+ "metadata": {
662
+ "hub_sha": "c37a2b4ccca91a97d57058b33037a0ce2d32dd91",
663
+ "package_state": "prebuilt_gguf_release",
664
+ "public_status": "public and non-gated",
665
+ "validation_status": "pass",
666
+ "total_weight_size": 4472020256
667
+ }
668
+ },
669
+ {
670
+ "model_id": "lumynax-infused-phi-4-text-gguf",
671
+ "repo_id": "AbteeXAILab/lumynax-infused-phi-4-text-gguf",
672
+ "title": "LumynaX Infused Phi-4 Text GGUF",
673
+ "family": "phi",
674
+ "runtime": "llama_cpp",
675
+ "modalities": [
676
+ "text"
677
+ ],
678
+ "context_tokens": 8192,
679
+ "jurisdiction": "NZ",
680
+ "residency": [
681
+ "NZ"
682
+ ],
683
+ "license_id": "see_model_card",
684
+ "quantization": "see_release_manifest",
685
+ "primary_artifact": "lumynax-infused-phi-4-text-gguf-f16.gguf",
686
+ "active_params_b": null,
687
+ "total_params_b": null,
688
+ "quality_rank": 3,
689
+ "cost_rank": 10,
690
+ "sovereignty_tier": 3,
691
+ "supports_tools": false,
692
+ "supports_json": true,
693
+ "tags": [
694
+ "general",
695
+ "gguf",
696
+ "lumynax",
697
+ "phi",
698
+ "text"
699
+ ],
700
+ "metadata": {
701
+ "hub_sha": "d1ea33475c83c3ce97e63789ab9699e5f534a639",
702
+ "package_state": "base_weights_hydrated_text_gguf",
703
+ "public_status": "public and non-gated",
704
+ "validation_status": "pass",
705
+ "total_weight_size": 38382657280
706
+ }
707
+ },
708
+ {
709
+ "model_id": "lumynax-infused-phi3-mini-4k-gguf",
710
+ "repo_id": "AbteeXAILab/lumynax-infused-phi3-mini-4k-gguf",
711
+ "title": "LumynaX Infused Phi-3 Mini 4K Instruct GGUF",
712
+ "family": "phi",
713
+ "runtime": "llama_cpp",
714
+ "modalities": [
715
+ "text"
716
+ ],
717
+ "context_tokens": 8192,
718
+ "jurisdiction": "NZ",
719
+ "residency": [
720
+ "NZ"
721
+ ],
722
+ "license_id": "see_model_card",
723
+ "quantization": "see_release_manifest",
724
+ "primary_artifact": "Phi-3-mini-4k-instruct-q4.gguf",
725
+ "active_params_b": null,
726
+ "total_params_b": null,
727
+ "quality_rank": 4,
728
+ "cost_rank": 4,
729
+ "sovereignty_tier": 3,
730
+ "supports_tools": false,
731
+ "supports_json": true,
732
+ "tags": [
733
+ "general",
734
+ "gguf",
735
+ "lumynax",
736
+ "phi",
737
+ "text"
738
+ ],
739
+ "metadata": {
740
+ "hub_sha": "726f4baf5b38e0ea150aaac0c893735f5af8b5d3",
741
+ "package_state": "prebuilt_gguf_release",
742
+ "public_status": "public and non-gated",
743
+ "validation_status": "pass",
744
+ "total_weight_size": 2393231072
745
+ }
746
+ },
747
+ {
748
+ "model_id": "lumynax-infused-phi4-mini-instruct-gguf",
749
+ "repo_id": "AbteeXAILab/lumynax-infused-phi4-mini-instruct-gguf",
750
+ "title": "LumynaX Infused Phi-4 Mini Instruct GGUF",
751
+ "family": "phi",
752
+ "runtime": "llama_cpp",
753
+ "modalities": [
754
+ "text"
755
+ ],
756
+ "context_tokens": 8192,
757
+ "jurisdiction": "NZ",
758
+ "residency": [
759
+ "NZ"
760
+ ],
761
+ "license_id": "see_model_card",
762
+ "quantization": "see_release_manifest",
763
+ "primary_artifact": "Phi-4-mini-instruct-Q4_K_M.gguf",
764
+ "active_params_b": null,
765
+ "total_params_b": null,
766
+ "quality_rank": 4,
767
+ "cost_rank": 4,
768
+ "sovereignty_tier": 3,
769
+ "supports_tools": false,
770
+ "supports_json": true,
771
+ "tags": [
772
+ "general",
773
+ "gguf",
774
+ "lumynax",
775
+ "phi",
776
+ "text"
777
+ ],
778
+ "metadata": {
779
+ "hub_sha": "0159c99af7f773fed806a9c298752698ebecfb74",
780
+ "package_state": "prebuilt_gguf_release",
781
+ "public_status": "public and non-gated",
782
+ "validation_status": "pass",
783
+ "total_weight_size": 2491874272
784
+ }
785
+ },
786
+ {
787
+ "model_id": "lumynax-infused-qwen2-audio-7b",
788
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen2-audio-7b",
789
+ "title": "LumynaX Infused Qwen2 Audio 7B",
790
+ "family": "qwen",
791
+ "runtime": "transformers",
792
+ "modalities": [
793
+ "audio",
794
+ "text"
795
+ ],
796
+ "context_tokens": 32768,
797
+ "jurisdiction": "NZ",
798
+ "residency": [
799
+ "NZ"
800
+ ],
801
+ "license_id": "see_model_card",
802
+ "quantization": "see_release_manifest",
803
+ "primary_artifact": "merged_model/model-00003-of-00005.safetensors",
804
+ "active_params_b": null,
805
+ "total_params_b": 7.0,
806
+ "quality_rank": 3,
807
+ "cost_rank": 8,
808
+ "sovereignty_tier": 2,
809
+ "supports_tools": false,
810
+ "supports_json": true,
811
+ "tags": [
812
+ "audio",
813
+ "general",
814
+ "lumynax",
815
+ "qwen",
816
+ "text"
817
+ ],
818
+ "metadata": {
819
+ "hub_sha": "e743d9eede8807f4a0ecff7d6d81a48c6bfd0aa9",
820
+ "package_state": "upstream_weights_hydrated_audio",
821
+ "public_status": "public and non-gated",
822
+ "validation_status": "pass",
823
+ "total_weight_size": 16794296368
824
+ }
825
+ },
826
+ {
827
+ "model_id": "lumynax-infused-qwen25-15b-instruct-gguf",
828
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen25-15b-instruct-gguf",
829
+ "title": "LumynaX Infused Qwen2.5 1.5B Instruct GGUF",
830
+ "family": "qwen",
831
+ "runtime": "llama_cpp",
832
+ "modalities": [
833
+ "text"
834
+ ],
835
+ "context_tokens": 32768,
836
+ "jurisdiction": "NZ",
837
+ "residency": [
838
+ "NZ"
839
+ ],
840
+ "license_id": "see_model_card",
841
+ "quantization": "see_release_manifest",
842
+ "primary_artifact": "qwen2.5-1.5b-instruct-q4_k_m.gguf",
843
+ "active_params_b": null,
844
+ "total_params_b": 1.5,
845
+ "quality_rank": 4,
846
+ "cost_rank": 4,
847
+ "sovereignty_tier": 3,
848
+ "supports_tools": false,
849
+ "supports_json": true,
850
+ "tags": [
851
+ "general",
852
+ "gguf",
853
+ "lumynax",
854
+ "qwen",
855
+ "text"
856
+ ],
857
+ "metadata": {
858
+ "hub_sha": "56236805876d7cde2954862e1dd3588a55a6912e",
859
+ "package_state": "prebuilt_gguf_release",
860
+ "public_status": "public and non-gated",
861
+ "validation_status": "pass",
862
+ "total_weight_size": 1117320736
863
+ }
864
+ },
865
+ {
866
+ "model_id": "lumynax-infused-qwen25-3b-instruct-gguf",
867
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen25-3b-instruct-gguf",
868
+ "title": "LumynaX Infused Qwen2.5 3B Instruct GGUF",
869
+ "family": "qwen",
870
+ "runtime": "llama_cpp",
871
+ "modalities": [
872
+ "text"
873
+ ],
874
+ "context_tokens": 32768,
875
+ "jurisdiction": "NZ",
876
+ "residency": [
877
+ "NZ"
878
+ ],
879
+ "license_id": "see_model_card",
880
+ "quantization": "see_release_manifest",
881
+ "primary_artifact": "qwen2.5-3b-instruct-q4_k_m.gguf",
882
+ "active_params_b": null,
883
+ "total_params_b": 3.0,
884
+ "quality_rank": 4,
885
+ "cost_rank": 4,
886
+ "sovereignty_tier": 3,
887
+ "supports_tools": false,
888
+ "supports_json": true,
889
+ "tags": [
890
+ "general",
891
+ "gguf",
892
+ "lumynax",
893
+ "qwen",
894
+ "text"
895
+ ],
896
+ "metadata": {
897
+ "hub_sha": "03272f747319be4d718c9feef64d5078bb8a0c07",
898
+ "package_state": "prebuilt_gguf_release",
899
+ "public_status": "public and non-gated",
900
+ "validation_status": "pass",
901
+ "total_weight_size": 2104932768
902
+ }
903
+ },
904
+ {
905
+ "model_id": "lumynax-infused-qwen25-7b-instruct-gguf",
906
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen25-7b-instruct-gguf",
907
+ "title": "LumynaX Infused Qwen2.5 7B Instruct GGUF",
908
+ "family": "qwen",
909
+ "runtime": "llama_cpp",
910
+ "modalities": [
911
+ "text"
912
+ ],
913
+ "context_tokens": 32768,
914
+ "jurisdiction": "NZ",
915
+ "residency": [
916
+ "NZ"
917
+ ],
918
+ "license_id": "see_model_card",
919
+ "quantization": "see_release_manifest",
920
+ "primary_artifact": "qwen2.5-7b-instruct-q3_k_m.gguf",
921
+ "active_params_b": null,
922
+ "total_params_b": 7.0,
923
+ "quality_rank": 3,
924
+ "cost_rank": 4,
925
+ "sovereignty_tier": 3,
926
+ "supports_tools": false,
927
+ "supports_json": true,
928
+ "tags": [
929
+ "general",
930
+ "gguf",
931
+ "lumynax",
932
+ "qwen",
933
+ "text"
934
+ ],
935
+ "metadata": {
936
+ "hub_sha": "a499dae1ce806b58f9727ca417615fd03958d115",
937
+ "package_state": "prebuilt_gguf_release",
938
+ "public_status": "public and non-gated",
939
+ "validation_status": "pass",
940
+ "total_weight_size": 3808391072
941
+ }
942
+ },
943
+ {
944
+ "model_id": "lumynax-infused-qwen25-omni-7b-voice",
945
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen25-omni-7b-voice",
946
+ "title": "LumynaX Infused Qwen2.5 Omni 7B Voice",
947
+ "family": "qwen",
948
+ "runtime": "transformers",
949
+ "modalities": [
950
+ "audio",
951
+ "text"
952
+ ],
953
+ "context_tokens": 32768,
954
+ "jurisdiction": "NZ",
955
+ "residency": [
956
+ "NZ"
957
+ ],
958
+ "license_id": "see_model_card",
959
+ "quantization": "see_release_manifest",
960
+ "primary_artifact": "merged_model/model-00003-of-00005.safetensors",
961
+ "active_params_b": null,
962
+ "total_params_b": 7.0,
963
+ "quality_rank": 3,
964
+ "cost_rank": 10,
965
+ "sovereignty_tier": 2,
966
+ "supports_tools": false,
967
+ "supports_json": true,
968
+ "tags": [
969
+ "audio",
970
+ "general",
971
+ "lumynax",
972
+ "qwen",
973
+ "text",
974
+ "voice"
975
+ ],
976
+ "metadata": {
977
+ "hub_sha": "8f2e5068851d87406998a678b3f69990fccb4ee3",
978
+ "package_state": "upstream_weights_hydrated_audio",
979
+ "public_status": "public and non-gated",
980
+ "validation_status": "pass",
981
+ "total_weight_size": 22362861192
982
+ }
983
+ },
984
+ {
985
+ "model_id": "lumynax-infused-qwen3-06b-gguf",
986
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-06b-gguf",
987
+ "title": "LumynaX Infused Qwen3 0.6B GGUF",
988
+ "family": "qwen",
989
+ "runtime": "llama_cpp",
990
+ "modalities": [
991
+ "text"
992
+ ],
993
+ "context_tokens": 32768,
994
+ "jurisdiction": "NZ",
995
+ "residency": [
996
+ "NZ"
997
+ ],
998
+ "license_id": "see_model_card",
999
+ "quantization": "see_release_manifest",
1000
+ "primary_artifact": "Qwen3-0.6B-Q8_0.gguf",
1001
+ "active_params_b": null,
1002
+ "total_params_b": 0.6,
1003
+ "quality_rank": 5,
1004
+ "cost_rank": 2,
1005
+ "sovereignty_tier": 3,
1006
+ "supports_tools": false,
1007
+ "supports_json": true,
1008
+ "tags": [
1009
+ "general",
1010
+ "gguf",
1011
+ "lumynax",
1012
+ "qwen",
1013
+ "text"
1014
+ ],
1015
+ "metadata": {
1016
+ "hub_sha": "1b61730d710869c3789fffcc422a4f15539cffcf",
1017
+ "package_state": "prebuilt_gguf_release",
1018
+ "public_status": "public and non-gated",
1019
+ "validation_status": "pass",
1020
+ "total_weight_size": 639446688
1021
+ }
1022
+ },
1023
+ {
1024
+ "model_id": "lumynax-infused-qwen3-14b-gguf",
1025
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-14b-gguf",
1026
+ "title": "LumynaX Infused Qwen3 14B GGUF",
1027
+ "family": "qwen",
1028
+ "runtime": "llama_cpp",
1029
+ "modalities": [
1030
+ "text"
1031
+ ],
1032
+ "context_tokens": 32768,
1033
+ "jurisdiction": "NZ",
1034
+ "residency": [
1035
+ "NZ"
1036
+ ],
1037
+ "license_id": "see_model_card",
1038
+ "quantization": "see_release_manifest",
1039
+ "primary_artifact": "Qwen3-14B-Q4_K_M.gguf",
1040
+ "active_params_b": null,
1041
+ "total_params_b": 14.0,
1042
+ "quality_rank": 2,
1043
+ "cost_rank": 8,
1044
+ "sovereignty_tier": 3,
1045
+ "supports_tools": false,
1046
+ "supports_json": true,
1047
+ "tags": [
1048
+ "general",
1049
+ "gguf",
1050
+ "lumynax",
1051
+ "qwen",
1052
+ "text"
1053
+ ],
1054
+ "metadata": {
1055
+ "hub_sha": "3fae690abff170d811eb5934efe6155621528d25",
1056
+ "package_state": "prebuilt_gguf_release",
1057
+ "public_status": "public and non-gated",
1058
+ "validation_status": "pass",
1059
+ "total_weight_size": 9001752960
1060
+ }
1061
+ },
1062
+ {
1063
+ "model_id": "lumynax-infused-qwen3-17b-gguf",
1064
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-17b-gguf",
1065
+ "title": "LumynaX Infused Qwen3 1.7B GGUF",
1066
+ "family": "qwen",
1067
+ "runtime": "llama_cpp",
1068
+ "modalities": [
1069
+ "text"
1070
+ ],
1071
+ "context_tokens": 32768,
1072
+ "jurisdiction": "NZ",
1073
+ "residency": [
1074
+ "NZ"
1075
+ ],
1076
+ "license_id": "see_model_card",
1077
+ "quantization": "see_release_manifest",
1078
+ "primary_artifact": "Qwen3-1.7B-Q8_0.gguf",
1079
+ "active_params_b": null,
1080
+ "total_params_b": 1.7,
1081
+ "quality_rank": 5,
1082
+ "cost_rank": 4,
1083
+ "sovereignty_tier": 3,
1084
+ "supports_tools": false,
1085
+ "supports_json": true,
1086
+ "tags": [
1087
+ "general",
1088
+ "gguf",
1089
+ "lumynax",
1090
+ "qwen",
1091
+ "text"
1092
+ ],
1093
+ "metadata": {
1094
+ "hub_sha": "5eb95b799e57e502872c9ed47e63580ee81558ff",
1095
+ "package_state": "prebuilt_gguf_release",
1096
+ "public_status": "public and non-gated",
1097
+ "validation_status": "pass",
1098
+ "total_weight_size": 1834426016
1099
+ }
1100
+ },
1101
+ {
1102
+ "model_id": "lumynax-infused-qwen3-30b-a3b-gguf",
1103
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-30b-a3b-gguf",
1104
+ "title": "LumynaX Infused Qwen3 30B A3B GGUF",
1105
+ "family": "qwen",
1106
+ "runtime": "llama_cpp",
1107
+ "modalities": [
1108
+ "text"
1109
+ ],
1110
+ "context_tokens": 32768,
1111
+ "jurisdiction": "NZ",
1112
+ "residency": [
1113
+ "NZ"
1114
+ ],
1115
+ "license_id": "see_model_card",
1116
+ "quantization": "see_release_manifest",
1117
+ "primary_artifact": "lumynax-infused-qwen3-30b-a3b-q4_k_m.gguf",
1118
+ "active_params_b": 3.0,
1119
+ "total_params_b": 30.0,
1120
+ "quality_rank": 1,
1121
+ "cost_rank": 8,
1122
+ "sovereignty_tier": 3,
1123
+ "supports_tools": false,
1124
+ "supports_json": true,
1125
+ "tags": [
1126
+ "general",
1127
+ "gguf",
1128
+ "lumynax",
1129
+ "qwen",
1130
+ "text"
1131
+ ],
1132
+ "metadata": {
1133
+ "hub_sha": "acfc6b800fc3979e419d4abfd51554b4d6e78abd",
1134
+ "package_state": "prebuilt_gguf_release",
1135
+ "public_status": "public and non-gated",
1136
+ "validation_status": "pass",
1137
+ "total_weight_size": 18556686912
1138
+ }
1139
+ },
1140
+ {
1141
+ "model_id": "lumynax-infused-qwen3-8b-gguf",
1142
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-8b-gguf",
1143
+ "title": "LumynaX Infused Qwen3 8B GGUF",
1144
+ "family": "qwen",
1145
+ "runtime": "llama_cpp",
1146
+ "modalities": [
1147
+ "text"
1148
+ ],
1149
+ "context_tokens": 32768,
1150
+ "jurisdiction": "NZ",
1151
+ "residency": [
1152
+ "NZ"
1153
+ ],
1154
+ "license_id": "see_model_card",
1155
+ "quantization": "see_release_manifest",
1156
+ "primary_artifact": "lumynax-infused-qwen3-8b-q4_k_m.gguf",
1157
+ "active_params_b": null,
1158
+ "total_params_b": 8.0,
1159
+ "quality_rank": 3,
1160
+ "cost_rank": 6,
1161
+ "sovereignty_tier": 3,
1162
+ "supports_tools": false,
1163
+ "supports_json": true,
1164
+ "tags": [
1165
+ "general",
1166
+ "gguf",
1167
+ "lumynax",
1168
+ "qwen",
1169
+ "text"
1170
+ ],
1171
+ "metadata": {
1172
+ "hub_sha": "c61c9a6fa0b95ec8a3da1912b897ca1fcc19d48a",
1173
+ "package_state": "prebuilt_gguf_release",
1174
+ "public_status": "public and non-gated",
1175
+ "validation_status": "pass",
1176
+ "total_weight_size": 5027783488
1177
+ }
1178
+ },
1179
+ {
1180
+ "model_id": "lumynax-infused-qwen3-coder-30b-a3b-gguf",
1181
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-coder-30b-a3b-gguf",
1182
+ "title": "LumynaX Infused Qwen3 Coder 30B A3B GGUF",
1183
+ "family": "qwen",
1184
+ "runtime": "llama_cpp",
1185
+ "modalities": [
1186
+ "text"
1187
+ ],
1188
+ "context_tokens": 32768,
1189
+ "jurisdiction": "NZ",
1190
+ "residency": [
1191
+ "NZ"
1192
+ ],
1193
+ "license_id": "see_model_card",
1194
+ "quantization": "see_release_manifest",
1195
+ "primary_artifact": "lumynax-infused-qwen3-coder-30b-a3b-q4_k_m.gguf",
1196
+ "active_params_b": 3.0,
1197
+ "total_params_b": 30.0,
1198
+ "quality_rank": 1,
1199
+ "cost_rank": 8,
1200
+ "sovereignty_tier": 3,
1201
+ "supports_tools": true,
1202
+ "supports_json": true,
1203
+ "tags": [
1204
+ "coder",
1205
+ "gguf",
1206
+ "lumynax",
1207
+ "qwen",
1208
+ "text"
1209
+ ],
1210
+ "metadata": {
1211
+ "hub_sha": "243f8578284934be06d3cb3d055de1b4a28059cc",
1212
+ "package_state": "prebuilt_gguf_release",
1213
+ "public_status": "public and non-gated",
1214
+ "validation_status": "pass",
1215
+ "total_weight_size": 18556689568
1216
+ }
1217
+ },
1218
+ {
1219
+ "model_id": "lumynax-infused-qwen3-text-gguf",
1220
+ "repo_id": "AbteeXAILab/lumynax-infused-qwen3-text-gguf",
1221
+ "title": "LumynaX Infused Qwen3 Text GGUF",
1222
+ "family": "qwen",
1223
+ "runtime": "llama_cpp",
1224
+ "modalities": [
1225
+ "text"
1226
+ ],
1227
+ "context_tokens": 32768,
1228
+ "jurisdiction": "NZ",
1229
+ "residency": [
1230
+ "NZ"
1231
+ ],
1232
+ "license_id": "see_model_card",
1233
+ "quantization": "see_release_manifest",
1234
+ "primary_artifact": "lumynax-infused-qwen3-text-gguf-f16.gguf",
1235
+ "active_params_b": null,
1236
+ "total_params_b": null,
1237
+ "quality_rank": 3,
1238
+ "cost_rank": 10,
1239
+ "sovereignty_tier": 3,
1240
+ "supports_tools": false,
1241
+ "supports_json": true,
1242
+ "tags": [
1243
+ "general",
1244
+ "gguf",
1245
+ "lumynax",
1246
+ "qwen",
1247
+ "text"
1248
+ ],
1249
+ "metadata": {
1250
+ "hub_sha": "405002e7153a01f4fcc96d610f6af761de8c0574",
1251
+ "package_state": "base_weights_hydrated_text_gguf",
1252
+ "public_status": "public and non-gated",
1253
+ "validation_status": "pass",
1254
+ "total_weight_size": 37797343976
1255
+ }
1256
+ },
1257
+ {
1258
+ "model_id": "lumynax-infused-smollm-135m-gguf",
1259
+ "repo_id": "AbteeXAILab/lumynax-infused-smollm-135m-gguf",
1260
+ "title": "LumynaX Infused SmolLM 135M Instruct GGUF",
1261
+ "family": "smollm",
1262
+ "runtime": "llama_cpp",
1263
+ "modalities": [
1264
+ "text"
1265
+ ],
1266
+ "context_tokens": 8192,
1267
+ "jurisdiction": "NZ",
1268
+ "residency": [
1269
+ "NZ"
1270
+ ],
1271
+ "license_id": "see_model_card",
1272
+ "quantization": "see_release_manifest",
1273
+ "primary_artifact": "SmolLM-135M-Instruct.Q4_K_M.gguf",
1274
+ "active_params_b": null,
1275
+ "total_params_b": null,
1276
+ "quality_rank": 5,
1277
+ "cost_rank": 2,
1278
+ "sovereignty_tier": 3,
1279
+ "supports_tools": false,
1280
+ "supports_json": true,
1281
+ "tags": [
1282
+ "general",
1283
+ "gguf",
1284
+ "lumynax",
1285
+ "smollm",
1286
+ "text"
1287
+ ],
1288
+ "metadata": {
1289
+ "hub_sha": "192518901ec475229151f3ce654a866a47a2a6f3",
1290
+ "package_state": "prebuilt_gguf_release",
1291
+ "public_status": "public and non-gated",
1292
+ "validation_status": "pass",
1293
+ "total_weight_size": 105454208
1294
+ }
1295
+ },
1296
+ {
1297
+ "model_id": "lumynax-infused-smollm2-17b-gguf",
1298
+ "repo_id": "AbteeXAILab/lumynax-infused-smollm2-17b-gguf",
1299
+ "title": "LumynaX Infused SmolLM2 1.7B Instruct GGUF",
1300
+ "family": "smollm",
1301
+ "runtime": "llama_cpp",
1302
+ "modalities": [
1303
+ "text"
1304
+ ],
1305
+ "context_tokens": 8192,
1306
+ "jurisdiction": "NZ",
1307
+ "residency": [
1308
+ "NZ"
1309
+ ],
1310
+ "license_id": "see_model_card",
1311
+ "quantization": "see_release_manifest",
1312
+ "primary_artifact": "smollm2-1.7b-instruct-q4_k_m.gguf",
1313
+ "active_params_b": null,
1314
+ "total_params_b": 1.7,
1315
+ "quality_rank": 5,
1316
+ "cost_rank": 4,
1317
+ "sovereignty_tier": 3,
1318
+ "supports_tools": false,
1319
+ "supports_json": true,
1320
+ "tags": [
1321
+ "general",
1322
+ "gguf",
1323
+ "lumynax",
1324
+ "smollm",
1325
+ "text"
1326
+ ],
1327
+ "metadata": {
1328
+ "hub_sha": "b71d0ad33a3e8f2f1582ceba7520e086a665bf46",
1329
+ "package_state": "prebuilt_gguf_release",
1330
+ "public_status": "public and non-gated",
1331
+ "validation_status": "pass",
1332
+ "total_weight_size": 1055609536
1333
+ }
1334
+ },
1335
+ {
1336
+ "model_id": "lumynax-infused-smollm2-360m-gguf",
1337
+ "repo_id": "AbteeXAILab/lumynax-infused-smollm2-360m-gguf",
1338
+ "title": "LumynaX Infused SmolLM2 360M Instruct GGUF",
1339
+ "family": "smollm",
1340
+ "runtime": "llama_cpp",
1341
+ "modalities": [
1342
+ "text"
1343
+ ],
1344
+ "context_tokens": 8192,
1345
+ "jurisdiction": "NZ",
1346
+ "residency": [
1347
+ "NZ"
1348
+ ],
1349
+ "license_id": "see_model_card",
1350
+ "quantization": "see_release_manifest",
1351
+ "primary_artifact": "smollm2-360m-instruct-q8_0.gguf",
1352
+ "active_params_b": null,
1353
+ "total_params_b": null,
1354
+ "quality_rank": 5,
1355
+ "cost_rank": 2,
1356
+ "sovereignty_tier": 3,
1357
+ "supports_tools": false,
1358
+ "supports_json": true,
1359
+ "tags": [
1360
+ "general",
1361
+ "gguf",
1362
+ "lumynax",
1363
+ "smollm",
1364
+ "text"
1365
+ ],
1366
+ "metadata": {
1367
+ "hub_sha": "a808313b05ac18b70e2b4de03a0ddb238d545c74",
1368
+ "package_state": "prebuilt_gguf_release",
1369
+ "public_status": "public and non-gated",
1370
+ "validation_status": "pass",
1371
+ "total_weight_size": 386404992
1372
+ }
1373
+ },
1374
+ {
1375
+ "model_id": "lumynax-infused-smollm3-3b-gguf",
1376
+ "repo_id": "AbteeXAILab/lumynax-infused-smollm3-3b-gguf",
1377
+ "title": "LumynaX Infused SmolLM3 3B GGUF",
1378
+ "family": "smollm",
1379
+ "runtime": "llama_cpp",
1380
+ "modalities": [
1381
+ "text"
1382
+ ],
1383
+ "context_tokens": 8192,
1384
+ "jurisdiction": "NZ",
1385
+ "residency": [
1386
+ "NZ"
1387
+ ],
1388
+ "license_id": "see_model_card",
1389
+ "quantization": "see_release_manifest",
1390
+ "primary_artifact": "SmolLM3-Q4_K_M.gguf",
1391
+ "active_params_b": null,
1392
+ "total_params_b": 3.0,
1393
+ "quality_rank": 4,
1394
+ "cost_rank": 4,
1395
+ "sovereignty_tier": 3,
1396
+ "supports_tools": false,
1397
+ "supports_json": true,
1398
+ "tags": [
1399
+ "general",
1400
+ "gguf",
1401
+ "lumynax",
1402
+ "smollm",
1403
+ "text"
1404
+ ],
1405
+ "metadata": {
1406
+ "hub_sha": "3cbfc3ed26da900885f8135bfcbd4331a6c5b5b9",
1407
+ "package_state": "prebuilt_gguf_release",
1408
+ "public_status": "public and non-gated",
1409
+ "validation_status": "pass",
1410
+ "total_weight_size": 1915305312
1411
+ }
1412
+ },
1413
+ {
1414
+ "model_id": "lumynax-infused-zephyr-7b-beta-gguf",
1415
+ "repo_id": "AbteeXAILab/lumynax-infused-zephyr-7b-beta-gguf",
1416
+ "title": "LumynaX Infused Zephyr 7B Beta GGUF",
1417
+ "family": "lumynax",
1418
+ "runtime": "llama_cpp",
1419
+ "modalities": [
1420
+ "text"
1421
+ ],
1422
+ "context_tokens": 8192,
1423
+ "jurisdiction": "NZ",
1424
+ "residency": [
1425
+ "NZ"
1426
+ ],
1427
+ "license_id": "see_model_card",
1428
+ "quantization": "see_release_manifest",
1429
+ "primary_artifact": "zephyr-7b-beta.Q4_K_M.gguf",
1430
+ "active_params_b": null,
1431
+ "total_params_b": 7.0,
1432
+ "quality_rank": 3,
1433
+ "cost_rank": 6,
1434
+ "sovereignty_tier": 3,
1435
+ "supports_tools": false,
1436
+ "supports_json": true,
1437
+ "tags": [
1438
+ "general",
1439
+ "gguf",
1440
+ "lumynax",
1441
+ "text"
1442
+ ],
1443
+ "metadata": {
1444
+ "hub_sha": "790aa3f7411fbd5b6ae8af3eedbefaf5c23c5a60",
1445
+ "package_state": "prebuilt_gguf_release",
1446
+ "public_status": "public and non-gated",
1447
+ "validation_status": "pass",
1448
+ "total_weight_size": 4368438976
1449
+ }
1450
+ },
1451
+ {
1452
+ "model_id": "lumynax-moe-moonlight-16b-a3b-gguf",
1453
+ "repo_id": "AbteeXAILab/lumynax-moe-moonlight-16b-a3b-gguf",
1454
+ "title": "LumynaX MoE Moonlight 16B A3B GGUF",
1455
+ "family": "lumynax",
1456
+ "runtime": "llama_cpp",
1457
+ "modalities": [
1458
+ "text"
1459
+ ],
1460
+ "context_tokens": 8192,
1461
+ "jurisdiction": "NZ",
1462
+ "residency": [
1463
+ "NZ"
1464
+ ],
1465
+ "license_id": "see_model_card",
1466
+ "quantization": "see_release_manifest",
1467
+ "primary_artifact": "lumynax-moe-moonlight-16b-a3b-iq4_xs.gguf",
1468
+ "active_params_b": 3.0,
1469
+ "total_params_b": 16.0,
1470
+ "quality_rank": 3,
1471
+ "cost_rank": 6,
1472
+ "sovereignty_tier": 3,
1473
+ "supports_tools": false,
1474
+ "supports_json": true,
1475
+ "tags": [
1476
+ "general",
1477
+ "gguf",
1478
+ "lumynax",
1479
+ "moe",
1480
+ "text"
1481
+ ],
1482
+ "metadata": {
1483
+ "hub_sha": "88926e39e3730c2d2bfe00088404fce8217c1c74",
1484
+ "package_state": "prebuilt_gguf_release",
1485
+ "public_status": "public and non-gated",
1486
+ "validation_status": "pass",
1487
+ "total_weight_size": 8744947840
1488
+ }
1489
+ },
1490
+ {
1491
+ "model_id": "lumynax-moe-olmoe-1b-7b-gguf",
1492
+ "repo_id": "AbteeXAILab/lumynax-moe-olmoe-1b-7b-gguf",
1493
+ "title": "LumynaX MoE OLMoE 1B-7B Instruct GGUF",
1494
+ "family": "olmo",
1495
+ "runtime": "llama_cpp",
1496
+ "modalities": [
1497
+ "text"
1498
+ ],
1499
+ "context_tokens": 8192,
1500
+ "jurisdiction": "NZ",
1501
+ "residency": [
1502
+ "NZ"
1503
+ ],
1504
+ "license_id": "see_model_card",
1505
+ "quantization": "see_release_manifest",
1506
+ "primary_artifact": "olmoe-1b-7b-0924-instruct-q4_k_m.gguf",
1507
+ "active_params_b": null,
1508
+ "total_params_b": 1.0,
1509
+ "quality_rank": 3,
1510
+ "cost_rank": 6,
1511
+ "sovereignty_tier": 3,
1512
+ "supports_tools": false,
1513
+ "supports_json": true,
1514
+ "tags": [
1515
+ "general",
1516
+ "gguf",
1517
+ "lumynax",
1518
+ "moe",
1519
+ "text"
1520
+ ],
1521
+ "metadata": {
1522
+ "hub_sha": "4515dabcc14be52616348757c7195a8bb2e490f8",
1523
+ "package_state": "prebuilt_gguf_release",
1524
+ "public_status": "public and non-gated",
1525
+ "validation_status": "pass",
1526
+ "total_weight_size": 4213512672
1527
+ }
1528
+ },
1529
+ {
1530
+ "model_id": "lumynax-multimodal-glm46v-flash",
1531
+ "repo_id": "AbteeXAILab/lumynax-multimodal-glm46v-flash",
1532
+ "title": "LumynaX Multimodal GLM 4.6V Flash",
1533
+ "family": "lumynax",
1534
+ "runtime": "llama_cpp_multimodal",
1535
+ "modalities": [
1536
+ "text",
1537
+ "image"
1538
+ ],
1539
+ "context_tokens": 4096,
1540
+ "jurisdiction": "NZ",
1541
+ "residency": [
1542
+ "NZ"
1543
+ ],
1544
+ "license_id": "see_model_card",
1545
+ "quantization": "see_release_manifest",
1546
+ "primary_artifact": "lumynax-multimodal-glm46v-flash-ud-iq2_m.gguf",
1547
+ "active_params_b": null,
1548
+ "total_params_b": null,
1549
+ "quality_rank": 3,
1550
+ "cost_rank": 6,
1551
+ "sovereignty_tier": 2,
1552
+ "supports_tools": false,
1553
+ "supports_json": true,
1554
+ "tags": [
1555
+ "image",
1556
+ "lumynax",
1557
+ "multimodal",
1558
+ "text"
1559
+ ],
1560
+ "metadata": {
1561
+ "hub_sha": "3f0a751fedde7cd6a3b8a083b7bdf128c8ca3ccd",
1562
+ "package_state": "prebuilt_gguf_release",
1563
+ "public_status": "public and non-gated",
1564
+ "validation_status": "pass",
1565
+ "total_weight_size": 5778988768
1566
+ }
1567
+ },
1568
+ {
1569
+ "model_id": "lumynax-multimodal-kimi-vl-a3b-thinking",
1570
+ "repo_id": "AbteeXAILab/lumynax-multimodal-kimi-vl-a3b-thinking",
1571
+ "title": "LumynaX Multimodal Kimi VL A3B Thinking",
1572
+ "family": "kimi",
1573
+ "runtime": "llama_cpp_multimodal",
1574
+ "modalities": [
1575
+ "text",
1576
+ "image"
1577
+ ],
1578
+ "context_tokens": 4096,
1579
+ "jurisdiction": "NZ",
1580
+ "residency": [
1581
+ "NZ"
1582
+ ],
1583
+ "license_id": "see_model_card",
1584
+ "quantization": "see_release_manifest",
1585
+ "primary_artifact": "lumynax-multimodal-kimi-vl-a3b-thinking-q4_k_m.gguf",
1586
+ "active_params_b": 3.0,
1587
+ "total_params_b": 3.0,
1588
+ "quality_rank": 3,
1589
+ "cost_rank": 8,
1590
+ "sovereignty_tier": 2,
1591
+ "supports_tools": false,
1592
+ "supports_json": true,
1593
+ "tags": [
1594
+ "image",
1595
+ "kimi",
1596
+ "lumynax",
1597
+ "multimodal",
1598
+ "text"
1599
+ ],
1600
+ "metadata": {
1601
+ "hub_sha": "460182aeb56feb94262a59e274be38f3b9638188",
1602
+ "package_state": "prebuilt_gguf_release",
1603
+ "public_status": "public and non-gated",
1604
+ "validation_status": "pass",
1605
+ "total_weight_size": 11158846304
1606
+ }
1607
+ },
1608
+ {
1609
+ "model_id": "lumynax-nz-3b",
1610
+ "repo_id": "AbteeXAILab/lumynax-nz-3b",
1611
+ "title": "LumynaX NZ 3B V1",
1612
+ "family": "lumynax",
1613
+ "runtime": "transformers",
1614
+ "modalities": [
1615
+ "text"
1616
+ ],
1617
+ "context_tokens": 4096,
1618
+ "jurisdiction": "NZ",
1619
+ "residency": [
1620
+ "NZ"
1621
+ ],
1622
+ "license_id": "see_model_card",
1623
+ "quantization": "see_release_manifest",
1624
+ "primary_artifact": "merged_model/model-00001-of-00055.safetensors",
1625
+ "active_params_b": null,
1626
+ "total_params_b": 3.0,
1627
+ "quality_rank": 3,
1628
+ "cost_rank": 8,
1629
+ "sovereignty_tier": 2,
1630
+ "supports_tools": false,
1631
+ "supports_json": true,
1632
+ "tags": [
1633
+ "general",
1634
+ "lumynax",
1635
+ "text"
1636
+ ],
1637
+ "metadata": {
1638
+ "hub_sha": "190ba7e1a81e9e980a8cf44d4a9d53dedca6322c",
1639
+ "package_state": "standalone_dense_model",
1640
+ "public_status": "public and non-gated",
1641
+ "validation_status": "pass",
1642
+ "total_weight_size": 12343804840
1643
+ }
1644
+ },
1645
+ {
1646
+ "model_id": "lumynax-nz-qwen25-coder-3b-gguf",
1647
+ "repo_id": "AbteeXAILab/lumynax-nz-qwen25-coder-3b-gguf",
1648
+ "title": "LumynaX NZ Qwen2.5 Coder 3B GGUF",
1649
+ "family": "qwen",
1650
+ "runtime": "llama_cpp",
1651
+ "modalities": [
1652
+ "text"
1653
+ ],
1654
+ "context_tokens": 32768,
1655
+ "jurisdiction": "NZ",
1656
+ "residency": [
1657
+ "NZ"
1658
+ ],
1659
+ "license_id": "see_model_card",
1660
+ "quantization": "see_release_manifest",
1661
+ "primary_artifact": "lumynax-nz-qwen25-coder-3b-q4_k_m.gguf",
1662
+ "active_params_b": null,
1663
+ "total_params_b": 3.0,
1664
+ "quality_rank": 4,
1665
+ "cost_rank": 4,
1666
+ "sovereignty_tier": 3,
1667
+ "supports_tools": true,
1668
+ "supports_json": true,
1669
+ "tags": [
1670
+ "coder",
1671
+ "gguf",
1672
+ "lumynax",
1673
+ "qwen",
1674
+ "text"
1675
+ ],
1676
+ "metadata": {
1677
+ "hub_sha": "b6603695131d11f937f8bd06b77985f1affd8398",
1678
+ "package_state": "prebuilt_gguf_release",
1679
+ "public_status": "public and non-gated",
1680
+ "validation_status": "pass",
1681
+ "total_weight_size": 2104932800
1682
+ }
1683
+ },
1684
+ {
1685
+ "model_id": "lumynax-reasoning-deepseek-distill-text-gguf",
1686
+ "repo_id": "AbteeXAILab/lumynax-reasoning-deepseek-distill-text-gguf",
1687
+ "title": "LumynaX Reasoning DeepSeek Distill Text GGUF",
1688
+ "family": "deepseek",
1689
+ "runtime": "llama_cpp",
1690
+ "modalities": [
1691
+ "text"
1692
+ ],
1693
+ "context_tokens": 8192,
1694
+ "jurisdiction": "NZ",
1695
+ "residency": [
1696
+ "NZ"
1697
+ ],
1698
+ "license_id": "see_model_card",
1699
+ "quantization": "see_release_manifest",
1700
+ "primary_artifact": "lumynax-reasoning-deepseek-distill-text-gguf-f16.gguf",
1701
+ "active_params_b": null,
1702
+ "total_params_b": null,
1703
+ "quality_rank": 2,
1704
+ "cost_rank": 10,
1705
+ "sovereignty_tier": 3,
1706
+ "supports_tools": true,
1707
+ "supports_json": true,
1708
+ "tags": [
1709
+ "deepseek",
1710
+ "gguf",
1711
+ "lumynax",
1712
+ "reasoning",
1713
+ "text"
1714
+ ],
1715
+ "metadata": {
1716
+ "hub_sha": "ff5915ca508ffd3b6d12121a2682f8d5ff8cb7be",
1717
+ "package_state": "base_weights_hydrated_text_gguf",
1718
+ "public_status": "public and non-gated",
1719
+ "validation_status": "pass",
1720
+ "total_weight_size": 38535825664
1721
+ }
1722
+ },
1723
+ {
1724
+ "model_id": "lumynax-reasoning-deepseek-r1-qwen-15b-gguf",
1725
+ "repo_id": "AbteeXAILab/lumynax-reasoning-deepseek-r1-qwen-15b-gguf",
1726
+ "title": "LumynaX Reasoning DeepSeek R1 Distill Qwen 1.5B GGUF",
1727
+ "family": "qwen",
1728
+ "runtime": "llama_cpp",
1729
+ "modalities": [
1730
+ "text"
1731
+ ],
1732
+ "context_tokens": 8192,
1733
+ "jurisdiction": "NZ",
1734
+ "residency": [
1735
+ "NZ"
1736
+ ],
1737
+ "license_id": "see_model_card",
1738
+ "quantization": "see_release_manifest",
1739
+ "primary_artifact": "DeepSeek-R1-Distill-Qwen-1.5B-Q4_K_M.gguf",
1740
+ "active_params_b": null,
1741
+ "total_params_b": 1.5,
1742
+ "quality_rank": 5,
1743
+ "cost_rank": 4,
1744
+ "sovereignty_tier": 3,
1745
+ "supports_tools": true,
1746
+ "supports_json": true,
1747
+ "tags": [
1748
+ "deepseek",
1749
+ "gguf",
1750
+ "lumynax",
1751
+ "qwen",
1752
+ "reasoning",
1753
+ "text"
1754
+ ],
1755
+ "metadata": {
1756
+ "hub_sha": "cb2a747d711fb83c6197855046e59c56828dbbaa",
1757
+ "package_state": "prebuilt_gguf_release",
1758
+ "public_status": "public and non-gated",
1759
+ "validation_status": "pass",
1760
+ "total_weight_size": 1117321312
1761
+ }
1762
+ },
1763
+ {
1764
+ "model_id": "lumynax-reasoning-deepseek-r1-qwen-7b-gguf",
1765
+ "repo_id": "AbteeXAILab/lumynax-reasoning-deepseek-r1-qwen-7b-gguf",
1766
+ "title": "LumynaX Reasoning DeepSeek R1 Distill Qwen 7B GGUF",
1767
+ "family": "qwen",
1768
+ "runtime": "llama_cpp",
1769
+ "modalities": [
1770
+ "text"
1771
+ ],
1772
+ "context_tokens": 8192,
1773
+ "jurisdiction": "NZ",
1774
+ "residency": [
1775
+ "NZ"
1776
+ ],
1777
+ "license_id": "see_model_card",
1778
+ "quantization": "see_release_manifest",
1779
+ "primary_artifact": "DeepSeek-R1-Distill-Qwen-7B-Q4_K_M.gguf",
1780
+ "active_params_b": null,
1781
+ "total_params_b": 7.0,
1782
+ "quality_rank": 3,
1783
+ "cost_rank": 6,
1784
+ "sovereignty_tier": 3,
1785
+ "supports_tools": true,
1786
+ "supports_json": true,
1787
+ "tags": [
1788
+ "deepseek",
1789
+ "gguf",
1790
+ "lumynax",
1791
+ "qwen",
1792
+ "reasoning",
1793
+ "text"
1794
+ ],
1795
+ "metadata": {
1796
+ "hub_sha": "02dbc4451a0a26e9760f740418cf4b9796ef2aa4",
1797
+ "package_state": "prebuilt_gguf_release",
1798
+ "public_status": "public and non-gated",
1799
+ "validation_status": "pass",
1800
+ "total_weight_size": 4683073248
1801
+ }
1802
+ },
1803
+ {
1804
+ "model_id": "lumynax-reasoning-gpt-oss-20b-gguf",
1805
+ "repo_id": "AbteeXAILab/lumynax-reasoning-gpt-oss-20b-gguf",
1806
+ "title": "LumynaX Reasoning GPT-OSS 20B GGUF",
1807
+ "family": "lumynax",
1808
+ "runtime": "llama_cpp",
1809
+ "modalities": [
1810
+ "text"
1811
+ ],
1812
+ "context_tokens": 8192,
1813
+ "jurisdiction": "NZ",
1814
+ "residency": [
1815
+ "NZ"
1816
+ ],
1817
+ "license_id": "see_model_card",
1818
+ "quantization": "see_release_manifest",
1819
+ "primary_artifact": "lumynax-reasoning-gpt-oss-20b-mxfp4.gguf",
1820
+ "active_params_b": null,
1821
+ "total_params_b": 20.0,
1822
+ "quality_rank": 1,
1823
+ "cost_rank": 8,
1824
+ "sovereignty_tier": 3,
1825
+ "supports_tools": true,
1826
+ "supports_json": true,
1827
+ "tags": [
1828
+ "gguf",
1829
+ "lumynax",
1830
+ "reasoning",
1831
+ "text"
1832
+ ],
1833
+ "metadata": {
1834
+ "hub_sha": "3f07992371177a312240df950d91ae1b2ff57714",
1835
+ "package_state": "prebuilt_gguf_release",
1836
+ "public_status": "public and non-gated",
1837
+ "validation_status": "pass",
1838
+ "total_weight_size": 12109566560
1839
+ }
1840
+ },
1841
+ {
1842
+ "model_id": "lumynax-reasoning-phi4-mini-gguf",
1843
+ "repo_id": "AbteeXAILab/lumynax-reasoning-phi4-mini-gguf",
1844
+ "title": "LumynaX Reasoning Phi-4 Mini GGUF",
1845
+ "family": "phi",
1846
+ "runtime": "llama_cpp",
1847
+ "modalities": [
1848
+ "text"
1849
+ ],
1850
+ "context_tokens": 8192,
1851
+ "jurisdiction": "NZ",
1852
+ "residency": [
1853
+ "NZ"
1854
+ ],
1855
+ "license_id": "see_model_card",
1856
+ "quantization": "see_release_manifest",
1857
+ "primary_artifact": "Phi-4-mini-reasoning-Q4_K_M.gguf",
1858
+ "active_params_b": null,
1859
+ "total_params_b": null,
1860
+ "quality_rank": 2,
1861
+ "cost_rank": 4,
1862
+ "sovereignty_tier": 3,
1863
+ "supports_tools": true,
1864
+ "supports_json": true,
1865
+ "tags": [
1866
+ "gguf",
1867
+ "lumynax",
1868
+ "phi",
1869
+ "reasoning",
1870
+ "text"
1871
+ ],
1872
+ "metadata": {
1873
+ "hub_sha": "ef04425cd19f96de197b2418a16aca6e5c868f45",
1874
+ "package_state": "prebuilt_gguf_release",
1875
+ "public_status": "public and non-gated",
1876
+ "validation_status": "pass",
1877
+ "total_weight_size": 2491875232
1878
+ }
1879
+ },
1880
+ {
1881
+ "model_id": "lumynax-tiny",
1882
+ "repo_id": "AbteeXAILab/lumynax-tiny",
1883
+ "title": "LumynaX Tiny Seed V1",
1884
+ "family": "lumynax",
1885
+ "runtime": "transformers",
1886
+ "modalities": [
1887
+ "text"
1888
+ ],
1889
+ "context_tokens": 4096,
1890
+ "jurisdiction": "NZ",
1891
+ "residency": [
1892
+ "NZ"
1893
+ ],
1894
+ "license_id": "see_model_card",
1895
+ "quantization": "see_release_manifest",
1896
+ "primary_artifact": "merged_model/model.safetensors",
1897
+ "active_params_b": null,
1898
+ "total_params_b": null,
1899
+ "quality_rank": 5,
1900
+ "cost_rank": 2,
1901
+ "sovereignty_tier": 2,
1902
+ "supports_tools": false,
1903
+ "supports_json": true,
1904
+ "tags": [
1905
+ "general",
1906
+ "lumynax",
1907
+ "text"
1908
+ ],
1909
+ "metadata": {
1910
+ "hub_sha": "c4ccf84ef0b646fbc61c83f24117aaea95225dd6",
1911
+ "package_state": "standalone_dense_model",
1912
+ "public_status": "public and non-gated",
1913
+ "validation_status": "pass",
1914
+ "total_weight_size": 4292528
1915
+ }
1916
+ },
1917
+ {
1918
+ "model_id": "lumynax-tiny-qwen25-05b-gguf",
1919
+ "repo_id": "AbteeXAILab/lumynax-tiny-qwen25-05b-gguf",
1920
+ "title": "LumynaX Tiny Qwen2.5 0.5B GGUF",
1921
+ "family": "qwen",
1922
+ "runtime": "llama_cpp",
1923
+ "modalities": [
1924
+ "text"
1925
+ ],
1926
+ "context_tokens": 32768,
1927
+ "jurisdiction": "NZ",
1928
+ "residency": [
1929
+ "NZ"
1930
+ ],
1931
+ "license_id": "see_model_card",
1932
+ "quantization": "see_release_manifest",
1933
+ "primary_artifact": "lumynax-tiny-qwen25-05b-q4_k_m.gguf",
1934
+ "active_params_b": null,
1935
+ "total_params_b": 0.5,
1936
+ "quality_rank": 5,
1937
+ "cost_rank": 2,
1938
+ "sovereignty_tier": 3,
1939
+ "supports_tools": false,
1940
+ "supports_json": true,
1941
+ "tags": [
1942
+ "general",
1943
+ "gguf",
1944
+ "lumynax",
1945
+ "qwen",
1946
+ "text"
1947
+ ],
1948
+ "metadata": {
1949
+ "hub_sha": "01266863890302b1d1f42bddfda1ff7146386359",
1950
+ "package_state": "prebuilt_gguf_release",
1951
+ "public_status": "public and non-gated",
1952
+ "validation_status": "pass",
1953
+ "total_weight_size": 491400032
1954
+ }
1955
+ },
1956
+ {
1957
+ "model_id": "lumynax-frontier-qwen3-235b-a22b-instruct",
1958
+ "repo_id": "AbteeXAILab/lumynax-frontier-qwen3-235b-a22b-instruct",
1959
+ "title": "LumynaX Frontier Qwen3 235B A22B Instruct",
1960
+ "family": "qwen",
1961
+ "runtime": "transformers",
1962
+ "modalities": [
1963
+ "text"
1964
+ ],
1965
+ "context_tokens": 262144,
1966
+ "jurisdiction": "NZ",
1967
+ "residency": [
1968
+ "NZ",
1969
+ "AU",
1970
+ "global"
1971
+ ],
1972
+ "license_id": "apache-2.0",
1973
+ "quantization": "bf16 / fp8 / Q4_K_M (community GGUF)",
1974
+ "primary_artifact": "model.safetensors (sharded)",
1975
+ "active_params_b": 22,
1976
+ "total_params_b": 235,
1977
+ "quality_rank": 1,
1978
+ "cost_rank": 5,
1979
+ "sovereignty_tier": 2,
1980
+ "supports_tools": true,
1981
+ "supports_json": true,
1982
+ "tags": [
1983
+ "frontier",
1984
+ "moe",
1985
+ "reasoning",
1986
+ "qwen3",
1987
+ "tools",
1988
+ "json",
1989
+ "long-context"
1990
+ ],
1991
+ "metadata": {
1992
+ "upstream_repo": "Qwen/Qwen3-235B-A22B-Instruct-2507",
1993
+ "release_version": "v0.1.0",
1994
+ "package_state": "scaffold_pulls_upstream",
1995
+ "public_status": "public and non-gated",
1996
+ "validation_status": "scaffold_verified"
1997
+ }
1998
+ },
1999
+ {
2000
+ "model_id": "lumynax-frontier-minimax-m2-230b",
2001
+ "repo_id": "AbteeXAILab/lumynax-frontier-minimax-m2-230b",
2002
+ "title": "LumynaX Frontier MiniMax M2 230B Agentic",
2003
+ "family": "minimax",
2004
+ "runtime": "transformers",
2005
+ "modalities": [
2006
+ "text"
2007
+ ],
2008
+ "context_tokens": 204800,
2009
+ "jurisdiction": "NZ",
2010
+ "residency": [
2011
+ "NZ",
2012
+ "AU",
2013
+ "global"
2014
+ ],
2015
+ "license_id": "other",
2016
+ "quantization": "bf16 / Q4_K_M (community GGUF)",
2017
+ "primary_artifact": "model.safetensors (sharded)",
2018
+ "active_params_b": 10,
2019
+ "total_params_b": 230,
2020
+ "quality_rank": 1,
2021
+ "cost_rank": 5,
2022
+ "sovereignty_tier": 2,
2023
+ "supports_tools": true,
2024
+ "supports_json": true,
2025
+ "tags": [
2026
+ "frontier",
2027
+ "moe",
2028
+ "agentic",
2029
+ "minimax",
2030
+ "tools",
2031
+ "json"
2032
+ ],
2033
+ "metadata": {
2034
+ "upstream_repo": "MiniMaxAI/MiniMax-M2",
2035
+ "release_version": "v0.1.0",
2036
+ "package_state": "scaffold_pulls_upstream",
2037
+ "public_status": "public and non-gated",
2038
+ "validation_status": "scaffold_verified"
2039
+ }
2040
+ },
2041
+ {
2042
+ "model_id": "lumynax-frontier-mixtral-8x22b-instruct-gguf",
2043
+ "repo_id": "AbteeXAILab/lumynax-frontier-mixtral-8x22b-instruct-gguf",
2044
+ "title": "LumynaX Frontier Mixtral 8x22B Instruct GGUF",
2045
+ "family": "mistral",
2046
+ "runtime": "llama_cpp",
2047
+ "modalities": [
2048
+ "text"
2049
+ ],
2050
+ "context_tokens": 65536,
2051
+ "jurisdiction": "NZ",
2052
+ "residency": [
2053
+ "NZ"
2054
+ ],
2055
+ "license_id": "apache-2.0",
2056
+ "quantization": "Q4_K_M (default) \u00b7 Q5_K_M \u00b7 Q8_0",
2057
+ "primary_artifact": "Mixtral-8x22B-Instruct-v0.1.Q4_K_M.gguf",
2058
+ "active_params_b": 39,
2059
+ "total_params_b": 141,
2060
+ "quality_rank": 2,
2061
+ "cost_rank": 4,
2062
+ "sovereignty_tier": 3,
2063
+ "supports_tools": true,
2064
+ "supports_json": true,
2065
+ "tags": [
2066
+ "frontier",
2067
+ "moe",
2068
+ "mixtral",
2069
+ "gguf",
2070
+ "llama-cpp",
2071
+ "tools"
2072
+ ],
2073
+ "metadata": {
2074
+ "upstream_repo": "mistralai/Mixtral-8x22B-Instruct-v0.1",
2075
+ "release_version": "v0.1.0",
2076
+ "package_state": "scaffold_pulls_upstream_gguf",
2077
+ "public_status": "public and non-gated",
2078
+ "validation_status": "scaffold_verified"
2079
+ }
2080
+ },
2081
+ {
2082
+ "model_id": "lumynax-frontier-dbrx-instruct-132b-gguf",
2083
+ "repo_id": "AbteeXAILab/lumynax-frontier-dbrx-instruct-132b-gguf",
2084
+ "title": "LumynaX Frontier DBRX Instruct 132B GGUF",
2085
+ "family": "dbrx",
2086
+ "runtime": "llama_cpp",
2087
+ "modalities": [
2088
+ "text"
2089
+ ],
2090
+ "context_tokens": 32768,
2091
+ "jurisdiction": "NZ",
2092
+ "residency": [
2093
+ "NZ"
2094
+ ],
2095
+ "license_id": "other",
2096
+ "quantization": "Q4_K_M (default) \u00b7 Q5_K_M \u00b7 Q8_0",
2097
+ "primary_artifact": "dbrx-instruct.Q4_K_M.gguf",
2098
+ "active_params_b": 36,
2099
+ "total_params_b": 132,
2100
+ "quality_rank": 2,
2101
+ "cost_rank": 4,
2102
+ "sovereignty_tier": 3,
2103
+ "supports_tools": true,
2104
+ "supports_json": true,
2105
+ "tags": [
2106
+ "frontier",
2107
+ "moe",
2108
+ "dbrx",
2109
+ "databricks",
2110
+ "gguf",
2111
+ "llama-cpp"
2112
+ ],
2113
+ "metadata": {
2114
+ "upstream_repo": "databricks/dbrx-instruct",
2115
+ "release_version": "v0.1.0",
2116
+ "package_state": "scaffold_pulls_upstream_gguf",
2117
+ "public_status": "public and non-gated",
2118
+ "validation_status": "scaffold_verified"
2119
+ }
2120
+ },
2121
+ {
2122
+ "model_id": "lumynax-multimodal-qwen25-vl-72b-instruct-gguf",
2123
+ "repo_id": "AbteeXAILab/lumynax-multimodal-qwen25-vl-72b-instruct-gguf",
2124
+ "title": "LumynaX Multimodal Qwen2.5 VL 72B Instruct GGUF",
2125
+ "family": "qwen",
2126
+ "runtime": "llama_cpp_multimodal",
2127
+ "modalities": [
2128
+ "text",
2129
+ "vision"
2130
+ ],
2131
+ "context_tokens": 131072,
2132
+ "jurisdiction": "NZ",
2133
+ "residency": [
2134
+ "NZ"
2135
+ ],
2136
+ "license_id": "other",
2137
+ "quantization": "Q4_K_M (default) \u00b7 Q5_K_M \u00b7 Q8_0",
2138
+ "primary_artifact": "Qwen2.5-VL-72B-Instruct-Q4_K_M.gguf",
2139
+ "active_params_b": null,
2140
+ "total_params_b": 72,
2141
+ "quality_rank": 2,
2142
+ "cost_rank": 4,
2143
+ "sovereignty_tier": 3,
2144
+ "supports_tools": true,
2145
+ "supports_json": true,
2146
+ "tags": [
2147
+ "multimodal",
2148
+ "vision",
2149
+ "qwen",
2150
+ "gguf",
2151
+ "llama-cpp",
2152
+ "image-text-to-text"
2153
+ ],
2154
+ "metadata": {
2155
+ "upstream_repo": "Qwen/Qwen2.5-VL-72B-Instruct",
2156
+ "release_version": "v0.1.0",
2157
+ "package_state": "scaffold_pulls_upstream_gguf",
2158
+ "public_status": "public and non-gated",
2159
+ "validation_status": "scaffold_verified"
2160
+ }
2161
+ },
2162
+ {
2163
+ "model_id": "lumynax-multimodal-pixtral-large-124b",
2164
+ "repo_id": "AbteeXAILab/lumynax-multimodal-pixtral-large-124b",
2165
+ "title": "LumynaX Multimodal Pixtral Large 124B",
2166
+ "family": "mistral",
2167
+ "runtime": "transformers_multimodal",
2168
+ "modalities": [
2169
+ "text",
2170
+ "vision"
2171
+ ],
2172
+ "context_tokens": 131072,
2173
+ "jurisdiction": "NZ",
2174
+ "residency": [
2175
+ "NZ",
2176
+ "AU"
2177
+ ],
2178
+ "license_id": "other",
2179
+ "quantization": "bf16 / fp8",
2180
+ "primary_artifact": "model.safetensors (sharded)",
2181
+ "active_params_b": null,
2182
+ "total_params_b": 124,
2183
+ "quality_rank": 2,
2184
+ "cost_rank": 5,
2185
+ "sovereignty_tier": 2,
2186
+ "supports_tools": true,
2187
+ "supports_json": true,
2188
+ "tags": [
2189
+ "multimodal",
2190
+ "vision",
2191
+ "pixtral",
2192
+ "mistral",
2193
+ "image-text-to-text"
2194
+ ],
2195
+ "metadata": {
2196
+ "upstream_repo": "mistralai/Pixtral-Large-Instruct-2411",
2197
+ "release_version": "v0.1.0",
2198
+ "package_state": "scaffold_pulls_upstream",
2199
+ "public_status": "public (Mistral research licence \u2014 non-commercial use)",
2200
+ "validation_status": "scaffold_verified"
2201
+ }
2202
+ },
2203
+ {
2204
+ "model_id": "lumynax-reasoning-glm46-355b-moe",
2205
+ "repo_id": "AbteeXAILab/lumynax-reasoning-glm46-355b-moe",
2206
+ "title": "LumynaX Reasoning GLM-4.6 355B MoE",
2207
+ "family": "glm",
2208
+ "runtime": "transformers",
2209
+ "modalities": [
2210
+ "text"
2211
+ ],
2212
+ "context_tokens": 204800,
2213
+ "jurisdiction": "NZ",
2214
+ "residency": [
2215
+ "NZ",
2216
+ "AU",
2217
+ "global"
2218
+ ],
2219
+ "license_id": "mit",
2220
+ "quantization": "bf16 / fp8 / Q4_K_M (community)",
2221
+ "primary_artifact": "model.safetensors (sharded)",
2222
+ "active_params_b": 32,
2223
+ "total_params_b": 355,
2224
+ "quality_rank": 1,
2225
+ "cost_rank": 5,
2226
+ "sovereignty_tier": 2,
2227
+ "supports_tools": true,
2228
+ "supports_json": true,
2229
+ "tags": [
2230
+ "frontier",
2231
+ "reasoning",
2232
+ "moe",
2233
+ "glm",
2234
+ "tools",
2235
+ "long-context"
2236
+ ],
2237
+ "metadata": {
2238
+ "upstream_repo": "zai-org/GLM-4.6",
2239
+ "release_version": "v0.1.0",
2240
+ "package_state": "scaffold_pulls_upstream",
2241
+ "public_status": "public and non-gated",
2242
+ "validation_status": "scaffold_verified"
2243
+ }
2244
+ },
2245
+ {
2246
+ "model_id": "lumynax-multimodal-internvl3-78b-instruct",
2247
+ "repo_id": "AbteeXAILab/lumynax-multimodal-internvl3-78b-instruct",
2248
+ "title": "LumynaX Multimodal InternVL3 78B Instruct",
2249
+ "family": "internvl",
2250
+ "runtime": "transformers_multimodal",
2251
+ "modalities": [
2252
+ "text",
2253
+ "vision"
2254
+ ],
2255
+ "context_tokens": 32768,
2256
+ "jurisdiction": "NZ",
2257
+ "residency": [
2258
+ "NZ",
2259
+ "AU",
2260
+ "global"
2261
+ ],
2262
+ "license_id": "mit",
2263
+ "quantization": "bf16 (safetensors mirror) \u2014 community GGUF when available",
2264
+ "primary_artifact": "model.safetensors (33 shards)",
2265
+ "active_params_b": null,
2266
+ "total_params_b": 78,
2267
+ "quality_rank": 2,
2268
+ "cost_rank": 4,
2269
+ "sovereignty_tier": 2,
2270
+ "supports_tools": true,
2271
+ "supports_json": true,
2272
+ "tags": [
2273
+ "multimodal",
2274
+ "vision",
2275
+ "internvl",
2276
+ "opengvlab",
2277
+ "image-text-to-text"
2278
+ ],
2279
+ "metadata": {
2280
+ "upstream_repo": "OpenGVLab/InternVL3-78B-Instruct",
2281
+ "release_version": "v0.1.0",
2282
+ "package_state": "weights_mirrored_safetensors",
2283
+ "public_status": "public and non-gated",
2284
+ "validation_status": "scaffold_verified"
2285
+ }
2286
+ },
2287
+ {
2288
+ "model_id": "lumynax-speech-whisper-large-v3-turbo",
2289
+ "repo_id": "AbteeXAILab/lumynax-speech-whisper-large-v3-turbo",
2290
+ "title": "LumynaX Speech Whisper Large v3 Turbo",
2291
+ "family": "whisper",
2292
+ "runtime": "transformers",
2293
+ "modalities": [
2294
+ "audio"
2295
+ ],
2296
+ "context_tokens": 30,
2297
+ "jurisdiction": "NZ",
2298
+ "residency": [
2299
+ "NZ",
2300
+ "AU",
2301
+ "global"
2302
+ ],
2303
+ "license_id": "mit",
2304
+ "quantization": "fp16 safetensors",
2305
+ "primary_artifact": "model.safetensors",
2306
+ "active_params_b": null,
2307
+ "total_params_b": 0.8,
2308
+ "quality_rank": 1,
2309
+ "cost_rank": 2,
2310
+ "sovereignty_tier": 3,
2311
+ "supports_tools": false,
2312
+ "supports_json": false,
2313
+ "tags": [
2314
+ "asr",
2315
+ "speech",
2316
+ "whisper",
2317
+ "audio"
2318
+ ],
2319
+ "metadata": {
2320
+ "upstream_repo": "openai/whisper-large-v3-turbo",
2321
+ "release_version": "v0.1.0",
2322
+ "package_state": "weights_mirrored",
2323
+ "public_status": "public and non-gated",
2324
+ "validation_status": "scaffold_verified"
2325
+ }
2326
+ },
2327
+ {
2328
+ "model_id": "lumynax-speech-kokoro-82m-tts",
2329
+ "repo_id": "AbteeXAILab/lumynax-speech-kokoro-82m-tts",
2330
+ "title": "LumynaX Speech Kokoro 82M TTS",
2331
+ "family": "kokoro",
2332
+ "runtime": "transformers",
2333
+ "modalities": [
2334
+ "text",
2335
+ "audio"
2336
+ ],
2337
+ "context_tokens": 510,
2338
+ "jurisdiction": "NZ",
2339
+ "residency": [
2340
+ "NZ",
2341
+ "AU",
2342
+ "global"
2343
+ ],
2344
+ "license_id": "apache-2.0",
2345
+ "quantization": "fp32 (small)",
2346
+ "primary_artifact": "kokoro-v1_0.pth",
2347
+ "active_params_b": null,
2348
+ "total_params_b": 0.082,
2349
+ "quality_rank": 1,
2350
+ "cost_rank": 1,
2351
+ "sovereignty_tier": 3,
2352
+ "supports_tools": false,
2353
+ "supports_json": false,
2354
+ "tags": [
2355
+ "tts",
2356
+ "speech",
2357
+ "kokoro",
2358
+ "audio"
2359
+ ],
2360
+ "metadata": {
2361
+ "upstream_repo": "hexgrad/Kokoro-82M",
2362
+ "release_version": "v0.1.0",
2363
+ "package_state": "weights_mirrored",
2364
+ "public_status": "public and non-gated",
2365
+ "validation_status": "scaffold_verified"
2366
+ }
2367
+ },
2368
+ {
2369
+ "model_id": "lumynax-reranker-bge-v2-m3",
2370
+ "repo_id": "AbteeXAILab/lumynax-reranker-bge-v2-m3",
2371
+ "title": "LumynaX Reranker BGE v2 M3",
2372
+ "family": "bge",
2373
+ "runtime": "transformers",
2374
+ "modalities": [
2375
+ "text"
2376
+ ],
2377
+ "context_tokens": 8192,
2378
+ "jurisdiction": "NZ",
2379
+ "residency": [
2380
+ "NZ",
2381
+ "AU",
2382
+ "global"
2383
+ ],
2384
+ "license_id": "mit",
2385
+ "quantization": "fp32 safetensors",
2386
+ "primary_artifact": "model.safetensors",
2387
+ "active_params_b": null,
2388
+ "total_params_b": 0.568,
2389
+ "quality_rank": 1,
2390
+ "cost_rank": 1,
2391
+ "sovereignty_tier": 3,
2392
+ "supports_tools": false,
2393
+ "supports_json": true,
2394
+ "tags": [
2395
+ "reranker",
2396
+ "retrieval",
2397
+ "bge",
2398
+ "embedding-companion"
2399
+ ],
2400
+ "metadata": {
2401
+ "upstream_repo": "BAAI/bge-reranker-v2-m3",
2402
+ "release_version": "v0.1.0",
2403
+ "package_state": "weights_mirrored",
2404
+ "public_status": "public and non-gated",
2405
+ "validation_status": "scaffold_verified"
2406
+ }
2407
+ },
2408
+ {
2409
+ "model_id": "lumynax-guard-text-moderation",
2410
+ "repo_id": "AbteeXAILab/lumynax-guard-text-moderation",
2411
+ "title": "LumynaX Guard Text Moderation",
2412
+ "family": "roberta",
2413
+ "runtime": "transformers",
2414
+ "modalities": [
2415
+ "text"
2416
+ ],
2417
+ "context_tokens": 512,
2418
+ "jurisdiction": "NZ",
2419
+ "residency": [
2420
+ "NZ",
2421
+ "AU",
2422
+ "global"
2423
+ ],
2424
+ "license_id": "mit",
2425
+ "quantization": "fp32 safetensors",
2426
+ "primary_artifact": "model.safetensors",
2427
+ "active_params_b": null,
2428
+ "total_params_b": 0.279,
2429
+ "quality_rank": 2,
2430
+ "cost_rank": 1,
2431
+ "sovereignty_tier": 3,
2432
+ "supports_tools": false,
2433
+ "supports_json": true,
2434
+ "tags": [
2435
+ "safety",
2436
+ "moderation",
2437
+ "classifier",
2438
+ "guardrail"
2439
+ ],
2440
+ "metadata": {
2441
+ "upstream_repo": "KoalaAI/Text-Moderation",
2442
+ "release_version": "v0.1.0",
2443
+ "package_state": "weights_mirrored",
2444
+ "public_status": "public and non-gated",
2445
+ "validation_status": "scaffold_verified"
2446
+ }
2447
+ },
2448
+ {
2449
+ "model_id": "lumynax-math-qwen25-math-7b-gguf",
2450
+ "repo_id": "AbteeXAILab/lumynax-math-qwen25-math-7b-gguf",
2451
+ "title": "LumynaX Math Qwen2.5 Math 7B GGUF",
2452
+ "family": "qwen",
2453
+ "runtime": "llama_cpp",
2454
+ "modalities": [
2455
+ "text"
2456
+ ],
2457
+ "context_tokens": 4096,
2458
+ "jurisdiction": "NZ",
2459
+ "residency": [
2460
+ "NZ"
2461
+ ],
2462
+ "license_id": "apache-2.0",
2463
+ "quantization": "Q4_K_M GGUF",
2464
+ "primary_artifact": "Qwen2.5-Math-7B-Instruct-Q4_K_M.gguf",
2465
+ "active_params_b": null,
2466
+ "total_params_b": 7,
2467
+ "quality_rank": 2,
2468
+ "cost_rank": 2,
2469
+ "sovereignty_tier": 3,
2470
+ "supports_tools": false,
2471
+ "supports_json": true,
2472
+ "tags": [
2473
+ "math",
2474
+ "reasoning",
2475
+ "qwen",
2476
+ "gguf"
2477
+ ],
2478
+ "metadata": {
2479
+ "upstream_repo": "Qwen/Qwen2.5-Math-7B-Instruct",
2480
+ "release_version": "v0.1.0",
2481
+ "package_state": "weights_mirrored",
2482
+ "public_status": "public and non-gated",
2483
+ "validation_status": "scaffold_verified"
2484
+ }
2485
+ },
2486
+ {
2487
+ "model_id": "lumynax-translate-nllb-200-3b",
2488
+ "repo_id": "AbteeXAILab/lumynax-translate-nllb-200-3b",
2489
+ "title": "LumynaX Translate NLLB-200 3.3B",
2490
+ "family": "nllb",
2491
+ "runtime": "transformers",
2492
+ "modalities": [
2493
+ "text"
2494
+ ],
2495
+ "context_tokens": 1024,
2496
+ "jurisdiction": "NZ",
2497
+ "residency": [
2498
+ "NZ",
2499
+ "AU",
2500
+ "global"
2501
+ ],
2502
+ "license_id": "cc-by-nc-4.0",
2503
+ "quantization": "fp32 safetensors",
2504
+ "primary_artifact": "model.safetensors",
2505
+ "active_params_b": null,
2506
+ "total_params_b": 3.3,
2507
+ "quality_rank": 2,
2508
+ "cost_rank": 3,
2509
+ "sovereignty_tier": 3,
2510
+ "supports_tools": false,
2511
+ "supports_json": false,
2512
+ "tags": [
2513
+ "translation",
2514
+ "nllb",
2515
+ "te-reo",
2516
+ "aotearoa",
2517
+ "languages"
2518
+ ],
2519
+ "metadata": {
2520
+ "upstream_repo": "facebook/nllb-200-3.3B",
2521
+ "release_version": "v0.1.0",
2522
+ "package_state": "weights_mirrored",
2523
+ "public_status": "public and non-gated",
2524
+ "validation_status": "scaffold_verified"
2525
+ }
2526
+ },
2527
+ {
2528
+ "model_id": "lumynax-coder-deepseek-v2-lite-16b-gguf",
2529
+ "repo_id": "AbteeXAILab/lumynax-coder-deepseek-v2-lite-16b-gguf",
2530
+ "title": "LumynaX Coder DeepSeek-Coder V2 Lite 16B GGUF",
2531
+ "family": "deepseek",
2532
+ "runtime": "llama_cpp",
2533
+ "modalities": [
2534
+ "text"
2535
+ ],
2536
+ "context_tokens": 163840,
2537
+ "jurisdiction": "NZ",
2538
+ "residency": [
2539
+ "NZ"
2540
+ ],
2541
+ "license_id": "other",
2542
+ "quantization": "Q4_K_M GGUF",
2543
+ "primary_artifact": "DeepSeek-Coder-V2-Lite-Instruct-Q4_K_M.gguf",
2544
+ "active_params_b": 2.4,
2545
+ "total_params_b": 16,
2546
+ "quality_rank": 2,
2547
+ "cost_rank": 2,
2548
+ "sovereignty_tier": 3,
2549
+ "supports_tools": true,
2550
+ "supports_json": true,
2551
+ "tags": [
2552
+ "coder",
2553
+ "moe",
2554
+ "deepseek",
2555
+ "gguf",
2556
+ "long-context"
2557
+ ],
2558
+ "metadata": {
2559
+ "upstream_repo": "deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct",
2560
+ "release_version": "v0.1.0",
2561
+ "package_state": "weights_mirrored",
2562
+ "public_status": "public and non-gated",
2563
+ "validation_status": "scaffold_verified"
2564
+ }
2565
+ },
2566
+ {
2567
+ "model_id": "lumynax-chat-hermes-3-llama31-8b-gguf",
2568
+ "repo_id": "AbteeXAILab/lumynax-chat-hermes-3-llama31-8b-gguf",
2569
+ "title": "LumynaX Chat Hermes-3 Llama-3.1 8B GGUF",
2570
+ "family": "llama",
2571
+ "runtime": "llama_cpp",
2572
+ "modalities": [
2573
+ "text"
2574
+ ],
2575
+ "context_tokens": 131072,
2576
+ "jurisdiction": "NZ",
2577
+ "residency": [
2578
+ "NZ"
2579
+ ],
2580
+ "license_id": "llama3.1",
2581
+ "quantization": "Q4_K_M GGUF",
2582
+ "primary_artifact": "Hermes-3-Llama-3.1-8B-Q4_K_M.gguf",
2583
+ "active_params_b": null,
2584
+ "total_params_b": 8,
2585
+ "quality_rank": 2,
2586
+ "cost_rank": 2,
2587
+ "sovereignty_tier": 3,
2588
+ "supports_tools": true,
2589
+ "supports_json": true,
2590
+ "tags": [
2591
+ "chat",
2592
+ "hermes",
2593
+ "llama",
2594
+ "gguf",
2595
+ "tools",
2596
+ "function-calling"
2597
+ ],
2598
+ "metadata": {
2599
+ "upstream_repo": "NousResearch/Hermes-3-Llama-3.1-8B",
2600
+ "release_version": "v0.1.0",
2601
+ "package_state": "weights_mirrored",
2602
+ "public_status": "public and non-gated",
2603
+ "validation_status": "scaffold_verified"
2604
+ }
2605
+ },
2606
+ {
2607
+ "model_id": "lumynax-doc-nougat-base",
2608
+ "repo_id": "AbteeXAILab/lumynax-doc-nougat-base",
2609
+ "title": "LumynaX Doc Nougat Base (academic PDF -> markdown)",
2610
+ "family": "nougat",
2611
+ "runtime": "transformers",
2612
+ "modalities": [
2613
+ "text",
2614
+ "vision"
2615
+ ],
2616
+ "context_tokens": 4096,
2617
+ "jurisdiction": "NZ",
2618
+ "residency": [
2619
+ "NZ",
2620
+ "AU",
2621
+ "global"
2622
+ ],
2623
+ "license_id": "cc-by-4.0",
2624
+ "quantization": "fp32 safetensors",
2625
+ "primary_artifact": "model.safetensors",
2626
+ "active_params_b": null,
2627
+ "total_params_b": 0.35,
2628
+ "quality_rank": 2,
2629
+ "cost_rank": 1,
2630
+ "sovereignty_tier": 3,
2631
+ "supports_tools": false,
2632
+ "supports_json": true,
2633
+ "tags": [
2634
+ "doc-ai",
2635
+ "ocr",
2636
+ "nougat",
2637
+ "pdf",
2638
+ "markdown"
2639
+ ],
2640
+ "metadata": {
2641
+ "upstream_repo": "facebook/nougat-base",
2642
+ "release_version": "v0.1.0",
2643
+ "package_state": "weights_mirrored",
2644
+ "public_status": "public and non-gated",
2645
+ "validation_status": "scaffold_verified"
2646
+ }
2647
+ },
2648
+ {
2649
+ "model_id": "lumynax-doc-donut-base",
2650
+ "repo_id": "AbteeXAILab/lumynax-doc-donut-base",
2651
+ "title": "LumynaX Doc Donut Base (document understanding)",
2652
+ "family": "donut",
2653
+ "runtime": "transformers",
2654
+ "modalities": [
2655
+ "text",
2656
+ "vision"
2657
+ ],
2658
+ "context_tokens": 1536,
2659
+ "jurisdiction": "NZ",
2660
+ "residency": [
2661
+ "NZ",
2662
+ "AU",
2663
+ "global"
2664
+ ],
2665
+ "license_id": "mit",
2666
+ "quantization": "fp32 safetensors",
2667
+ "primary_artifact": "model.safetensors",
2668
+ "active_params_b": null,
2669
+ "total_params_b": 0.2,
2670
+ "quality_rank": 2,
2671
+ "cost_rank": 1,
2672
+ "sovereignty_tier": 3,
2673
+ "supports_tools": false,
2674
+ "supports_json": true,
2675
+ "tags": [
2676
+ "doc-ai",
2677
+ "donut",
2678
+ "document-vqa"
2679
+ ],
2680
+ "metadata": {
2681
+ "upstream_repo": "naver-clova-ix/donut-base",
2682
+ "release_version": "v0.1.0",
2683
+ "package_state": "weights_mirrored",
2684
+ "public_status": "public and non-gated",
2685
+ "validation_status": "scaffold_verified"
2686
+ }
2687
+ },
2688
+ {
2689
+ "model_id": "lumynax-ocr-trocr-large-printed",
2690
+ "repo_id": "AbteeXAILab/lumynax-ocr-trocr-large-printed",
2691
+ "title": "LumynaX OCR TrOCR Large Printed",
2692
+ "family": "trocr",
2693
+ "runtime": "transformers",
2694
+ "modalities": [
2695
+ "text",
2696
+ "vision"
2697
+ ],
2698
+ "context_tokens": 512,
2699
+ "jurisdiction": "NZ",
2700
+ "residency": [
2701
+ "NZ",
2702
+ "AU",
2703
+ "global"
2704
+ ],
2705
+ "license_id": "mit",
2706
+ "quantization": "fp32 safetensors",
2707
+ "primary_artifact": "model.safetensors",
2708
+ "active_params_b": null,
2709
+ "total_params_b": 0.55,
2710
+ "quality_rank": 2,
2711
+ "cost_rank": 2,
2712
+ "sovereignty_tier": 3,
2713
+ "supports_tools": false,
2714
+ "supports_json": false,
2715
+ "tags": [
2716
+ "ocr",
2717
+ "printed",
2718
+ "trocr"
2719
+ ],
2720
+ "metadata": {
2721
+ "upstream_repo": "microsoft/trocr-large-printed",
2722
+ "release_version": "v0.1.0",
2723
+ "package_state": "weights_mirrored",
2724
+ "public_status": "public and non-gated",
2725
+ "validation_status": "scaffold_verified"
2726
+ }
2727
+ },
2728
+ {
2729
+ "model_id": "lumynax-ocr-trocr-large-handwritten",
2730
+ "repo_id": "AbteeXAILab/lumynax-ocr-trocr-large-handwritten",
2731
+ "title": "LumynaX OCR TrOCR Large Handwritten",
2732
+ "family": "trocr",
2733
+ "runtime": "transformers",
2734
+ "modalities": [
2735
+ "text",
2736
+ "vision"
2737
+ ],
2738
+ "context_tokens": 512,
2739
+ "jurisdiction": "NZ",
2740
+ "residency": [
2741
+ "NZ",
2742
+ "AU",
2743
+ "global"
2744
+ ],
2745
+ "license_id": "mit",
2746
+ "quantization": "fp32 safetensors",
2747
+ "primary_artifact": "model.safetensors",
2748
+ "active_params_b": null,
2749
+ "total_params_b": 0.55,
2750
+ "quality_rank": 2,
2751
+ "cost_rank": 2,
2752
+ "sovereignty_tier": 3,
2753
+ "supports_tools": false,
2754
+ "supports_json": false,
2755
+ "tags": [
2756
+ "ocr",
2757
+ "handwritten",
2758
+ "trocr"
2759
+ ],
2760
+ "metadata": {
2761
+ "upstream_repo": "microsoft/trocr-large-handwritten",
2762
+ "release_version": "v0.1.0",
2763
+ "package_state": "weights_mirrored",
2764
+ "public_status": "public and non-gated",
2765
+ "validation_status": "scaffold_verified"
2766
+ }
2767
+ },
2768
+ {
2769
+ "model_id": "lumynax-doc-layoutlmv3-base",
2770
+ "repo_id": "AbteeXAILab/lumynax-doc-layoutlmv3-base",
2771
+ "title": "LumynaX Doc LayoutLMv3 Base (document layout+text)",
2772
+ "family": "layoutlm",
2773
+ "runtime": "transformers",
2774
+ "modalities": [
2775
+ "text",
2776
+ "vision"
2777
+ ],
2778
+ "context_tokens": 512,
2779
+ "jurisdiction": "NZ",
2780
+ "residency": [
2781
+ "NZ",
2782
+ "AU",
2783
+ "global"
2784
+ ],
2785
+ "license_id": "cc-by-nc-4.0",
2786
+ "quantization": "fp32 safetensors",
2787
+ "primary_artifact": "model.safetensors",
2788
+ "active_params_b": null,
2789
+ "total_params_b": 0.13,
2790
+ "quality_rank": 2,
2791
+ "cost_rank": 1,
2792
+ "sovereignty_tier": 3,
2793
+ "supports_tools": false,
2794
+ "supports_json": true,
2795
+ "tags": [
2796
+ "doc-ai",
2797
+ "layout",
2798
+ "layoutlm"
2799
+ ],
2800
+ "metadata": {
2801
+ "upstream_repo": "microsoft/layoutlmv3-base",
2802
+ "release_version": "v0.1.0",
2803
+ "package_state": "weights_mirrored",
2804
+ "public_status": "public and non-gated",
2805
+ "validation_status": "scaffold_verified"
2806
+ }
2807
+ },
2808
+ {
2809
+ "model_id": "lumynax-doc-table-transformer-detection",
2810
+ "repo_id": "AbteeXAILab/lumynax-doc-table-transformer-detection",
2811
+ "title": "LumynaX Doc Table Transformer (detection)",
2812
+ "family": "table-transformer",
2813
+ "runtime": "transformers",
2814
+ "modalities": [
2815
+ "vision"
2816
+ ],
2817
+ "context_tokens": 0,
2818
+ "jurisdiction": "NZ",
2819
+ "residency": [
2820
+ "NZ",
2821
+ "AU",
2822
+ "global"
2823
+ ],
2824
+ "license_id": "mit",
2825
+ "quantization": "fp32 safetensors",
2826
+ "primary_artifact": "model.safetensors",
2827
+ "active_params_b": null,
2828
+ "total_params_b": 0.029,
2829
+ "quality_rank": 2,
2830
+ "cost_rank": 1,
2831
+ "sovereignty_tier": 3,
2832
+ "supports_tools": false,
2833
+ "supports_json": true,
2834
+ "tags": [
2835
+ "doc-ai",
2836
+ "tables",
2837
+ "detection",
2838
+ "detr"
2839
+ ],
2840
+ "metadata": {
2841
+ "upstream_repo": "microsoft/table-transformer-detection",
2842
+ "release_version": "v0.1.0",
2843
+ "package_state": "weights_mirrored",
2844
+ "public_status": "public and non-gated",
2845
+ "validation_status": "scaffold_verified"
2846
+ }
2847
+ },
2848
+ {
2849
+ "model_id": "lumynax-embed-nomic-v2-moe",
2850
+ "repo_id": "AbteeXAILab/lumynax-embed-nomic-v2-moe",
2851
+ "title": "LumynaX Embed Nomic v2 MoE (modern retrieval)",
2852
+ "family": "nomic",
2853
+ "runtime": "python_embedding",
2854
+ "modalities": [
2855
+ "text"
2856
+ ],
2857
+ "context_tokens": 512,
2858
+ "jurisdiction": "NZ",
2859
+ "residency": [
2860
+ "NZ",
2861
+ "AU",
2862
+ "global"
2863
+ ],
2864
+ "license_id": "apache-2.0",
2865
+ "quantization": "fp32 safetensors",
2866
+ "primary_artifact": "model.safetensors",
2867
+ "active_params_b": 0.305,
2868
+ "total_params_b": 0.475,
2869
+ "quality_rank": 1,
2870
+ "cost_rank": 1,
2871
+ "sovereignty_tier": 3,
2872
+ "supports_tools": false,
2873
+ "supports_json": true,
2874
+ "tags": [
2875
+ "embedding",
2876
+ "retrieval",
2877
+ "nomic",
2878
+ "moe",
2879
+ "modern"
2880
+ ],
2881
+ "metadata": {
2882
+ "upstream_repo": "nomic-ai/nomic-embed-text-v2-moe",
2883
+ "release_version": "v0.1.0",
2884
+ "package_state": "weights_mirrored",
2885
+ "public_status": "public and non-gated",
2886
+ "validation_status": "scaffold_verified"
2887
+ }
2888
+ },
2889
+ {
2890
+ "model_id": "lumynax-embed-granite-278m-multilingual",
2891
+ "repo_id": "AbteeXAILab/lumynax-embed-granite-278m-multilingual",
2892
+ "title": "LumynaX Embed IBM Granite 278M Multilingual",
2893
+ "family": "granite",
2894
+ "runtime": "python_embedding",
2895
+ "modalities": [
2896
+ "text"
2897
+ ],
2898
+ "context_tokens": 512,
2899
+ "jurisdiction": "NZ",
2900
+ "residency": [
2901
+ "NZ",
2902
+ "AU",
2903
+ "global"
2904
+ ],
2905
+ "license_id": "apache-2.0",
2906
+ "quantization": "fp32 safetensors",
2907
+ "primary_artifact": "model.safetensors",
2908
+ "active_params_b": null,
2909
+ "total_params_b": 0.278,
2910
+ "quality_rank": 2,
2911
+ "cost_rank": 1,
2912
+ "sovereignty_tier": 3,
2913
+ "supports_tools": false,
2914
+ "supports_json": true,
2915
+ "tags": [
2916
+ "embedding",
2917
+ "retrieval",
2918
+ "granite",
2919
+ "multilingual",
2920
+ "ibm"
2921
+ ],
2922
+ "metadata": {
2923
+ "upstream_repo": "ibm-granite/granite-embedding-278m-multilingual",
2924
+ "release_version": "v0.1.0",
2925
+ "package_state": "weights_mirrored",
2926
+ "public_status": "public and non-gated",
2927
+ "validation_status": "scaffold_verified"
2928
+ }
2929
+ },
2930
+ {
2931
+ "model_id": "lumynax-frontier-qwen25-72b-instruct-gguf",
2932
+ "repo_id": "AbteeXAILab/lumynax-frontier-qwen25-72b-instruct-gguf",
2933
+ "title": "LumynaX Frontier Qwen2.5 72B Instruct GGUF",
2934
+ "family": "qwen",
2935
+ "runtime": "llama_cpp",
2936
+ "modalities": [
2937
+ "text"
2938
+ ],
2939
+ "context_tokens": 131072,
2940
+ "jurisdiction": "NZ",
2941
+ "residency": [
2942
+ "NZ",
2943
+ "AU",
2944
+ "global"
2945
+ ],
2946
+ "license_id": "other",
2947
+ "quantization": "Q4_K_M GGUF",
2948
+ "primary_artifact": "Qwen2.5-72B-Instruct-Q4_K_M.gguf",
2949
+ "active_params_b": null,
2950
+ "total_params_b": 72,
2951
+ "quality_rank": 1,
2952
+ "cost_rank": 4,
2953
+ "sovereignty_tier": 3,
2954
+ "supports_tools": true,
2955
+ "supports_json": true,
2956
+ "tags": [
2957
+ "frontier",
2958
+ "dense",
2959
+ "qwen",
2960
+ "gguf",
2961
+ "tools",
2962
+ "long-context"
2963
+ ],
2964
+ "metadata": {
2965
+ "upstream_repo": "Qwen/Qwen2.5-72B-Instruct",
2966
+ "release_version": "v0.1.0",
2967
+ "package_state": "weights_mirrored",
2968
+ "public_status": "public and non-gated",
2969
+ "validation_status": "scaffold_verified"
2970
+ }
2971
+ },
2972
+ {
2973
+ "model_id": "lumynax-frontier-olmo2-32b-instruct",
2974
+ "repo_id": "AbteeXAILab/lumynax-frontier-olmo2-32b-instruct",
2975
+ "title": "LumynaX Frontier OLMo-2 32B Instruct (fully open)",
2976
+ "family": "olmo",
2977
+ "runtime": "transformers",
2978
+ "modalities": [
2979
+ "text"
2980
+ ],
2981
+ "context_tokens": 4096,
2982
+ "jurisdiction": "NZ",
2983
+ "residency": [
2984
+ "NZ",
2985
+ "AU",
2986
+ "global"
2987
+ ],
2988
+ "license_id": "apache-2.0",
2989
+ "quantization": "bf16 safetensors",
2990
+ "primary_artifact": "model.safetensors (sharded)",
2991
+ "active_params_b": null,
2992
+ "total_params_b": 32,
2993
+ "quality_rank": 1,
2994
+ "cost_rank": 4,
2995
+ "sovereignty_tier": 2,
2996
+ "supports_tools": true,
2997
+ "supports_json": true,
2998
+ "tags": [
2999
+ "frontier",
3000
+ "fully-open",
3001
+ "olmo",
3002
+ "allenai",
3003
+ "apache"
3004
+ ],
3005
+ "metadata": {
3006
+ "upstream_repo": "allenai/OLMo-2-0325-32B-Instruct",
3007
+ "release_version": "v0.1.0",
3008
+ "package_state": "weights_mirrored",
3009
+ "public_status": "public and non-gated",
3010
+ "validation_status": "scaffold_verified"
3011
+ }
3012
+ },
3013
+ {
3014
+ "model_id": "lumynax-chat-yi-15-34b-gguf",
3015
+ "repo_id": "AbteeXAILab/lumynax-chat-yi-15-34b-gguf",
3016
+ "title": "LumynaX Chat Yi-1.5 34B GGUF (multilingual)",
3017
+ "family": "yi",
3018
+ "runtime": "llama_cpp",
3019
+ "modalities": [
3020
+ "text"
3021
+ ],
3022
+ "context_tokens": 32768,
3023
+ "jurisdiction": "NZ",
3024
+ "residency": [
3025
+ "NZ"
3026
+ ],
3027
+ "license_id": "apache-2.0",
3028
+ "quantization": "Q4_K_M GGUF",
3029
+ "primary_artifact": "Yi-1.5-34B-Chat-Q4_K_M.gguf",
3030
+ "active_params_b": null,
3031
+ "total_params_b": 34,
3032
+ "quality_rank": 2,
3033
+ "cost_rank": 3,
3034
+ "sovereignty_tier": 3,
3035
+ "supports_tools": true,
3036
+ "supports_json": true,
3037
+ "tags": [
3038
+ "chat",
3039
+ "yi",
3040
+ "multilingual",
3041
+ "gguf"
3042
+ ],
3043
+ "metadata": {
3044
+ "upstream_repo": "01-ai/Yi-1.5-34B-Chat",
3045
+ "release_version": "v0.1.0",
3046
+ "package_state": "weights_mirrored",
3047
+ "public_status": "public and non-gated",
3048
+ "validation_status": "scaffold_verified"
3049
+ }
3050
+ },
3051
+ {
3052
+ "model_id": "lumynax-reasoning-internlm3-8b-gguf",
3053
+ "repo_id": "AbteeXAILab/lumynax-reasoning-internlm3-8b-gguf",
3054
+ "title": "LumynaX Reasoning InternLM3 8B Instruct GGUF",
3055
+ "family": "internlm",
3056
+ "runtime": "llama_cpp",
3057
+ "modalities": [
3058
+ "text"
3059
+ ],
3060
+ "context_tokens": 32768,
3061
+ "jurisdiction": "NZ",
3062
+ "residency": [
3063
+ "NZ"
3064
+ ],
3065
+ "license_id": "apache-2.0",
3066
+ "quantization": "Q4_K_M GGUF",
3067
+ "primary_artifact": "internlm3-8b-instruct-Q4_K_M.gguf",
3068
+ "active_params_b": null,
3069
+ "total_params_b": 8,
3070
+ "quality_rank": 2,
3071
+ "cost_rank": 2,
3072
+ "sovereignty_tier": 3,
3073
+ "supports_tools": true,
3074
+ "supports_json": true,
3075
+ "tags": [
3076
+ "reasoning",
3077
+ "internlm",
3078
+ "chat",
3079
+ "gguf"
3080
+ ],
3081
+ "metadata": {
3082
+ "upstream_repo": "internlm/internlm3-8b-instruct",
3083
+ "release_version": "v0.1.0",
3084
+ "package_state": "weights_mirrored",
3085
+ "public_status": "public and non-gated",
3086
+ "validation_status": "scaffold_verified"
3087
+ }
3088
+ },
3089
+ {
3090
+ "model_id": "lumynax-multimodal-aria-25b-moe",
3091
+ "repo_id": "AbteeXAILab/lumynax-multimodal-aria-25b-moe",
3092
+ "title": "LumynaX Multimodal Aria 25B/3.5B MoE",
3093
+ "family": "aria",
3094
+ "runtime": "transformers_multimodal",
3095
+ "modalities": [
3096
+ "text",
3097
+ "vision"
3098
+ ],
3099
+ "context_tokens": 65536,
3100
+ "jurisdiction": "NZ",
3101
+ "residency": [
3102
+ "NZ",
3103
+ "AU",
3104
+ "global"
3105
+ ],
3106
+ "license_id": "apache-2.0",
3107
+ "quantization": "bf16 safetensors",
3108
+ "primary_artifact": "model.safetensors (sharded)",
3109
+ "active_params_b": 3.5,
3110
+ "total_params_b": 25,
3111
+ "quality_rank": 2,
3112
+ "cost_rank": 3,
3113
+ "sovereignty_tier": 2,
3114
+ "supports_tools": true,
3115
+ "supports_json": true,
3116
+ "tags": [
3117
+ "multimodal",
3118
+ "vision",
3119
+ "moe",
3120
+ "aria",
3121
+ "apache"
3122
+ ],
3123
+ "metadata": {
3124
+ "upstream_repo": "rhymes-ai/Aria",
3125
+ "release_version": "v0.1.0",
3126
+ "package_state": "weights_mirrored",
3127
+ "public_status": "public and non-gated",
3128
+ "validation_status": "scaffold_verified"
3129
+ }
3130
+ },
3131
+ {
3132
+ "model_id": "lumynax-multimodal-llava-next-34b",
3133
+ "repo_id": "AbteeXAILab/lumynax-multimodal-llava-next-34b",
3134
+ "title": "LumynaX Multimodal LLaVA-Next 34B",
3135
+ "family": "llava",
3136
+ "runtime": "transformers_multimodal",
3137
+ "modalities": [
3138
+ "text",
3139
+ "vision"
3140
+ ],
3141
+ "context_tokens": 4096,
3142
+ "jurisdiction": "NZ",
3143
+ "residency": [
3144
+ "NZ",
3145
+ "AU",
3146
+ "global"
3147
+ ],
3148
+ "license_id": "apache-2.0",
3149
+ "quantization": "bf16 safetensors",
3150
+ "primary_artifact": "model.safetensors (sharded)",
3151
+ "active_params_b": null,
3152
+ "total_params_b": 34,
3153
+ "quality_rank": 2,
3154
+ "cost_rank": 4,
3155
+ "sovereignty_tier": 2,
3156
+ "supports_tools": false,
3157
+ "supports_json": true,
3158
+ "tags": [
3159
+ "multimodal",
3160
+ "vision",
3161
+ "llava",
3162
+ "yi-based"
3163
+ ],
3164
+ "metadata": {
3165
+ "upstream_repo": "liuhaotian/llava-v1.6-34b",
3166
+ "release_version": "v0.1.0",
3167
+ "package_state": "weights_mirrored",
3168
+ "public_status": "public and non-gated",
3169
+ "validation_status": "scaffold_verified"
3170
+ }
3171
+ },
3172
+ {
3173
+ "model_id": "lumynax-reasoning-qwq-32b-gguf",
3174
+ "repo_id": "AbteeXAILab/lumynax-reasoning-qwq-32b-gguf",
3175
+ "title": "LumynaX Reasoning QwQ-32B GGUF",
3176
+ "family": "qwen",
3177
+ "runtime": "llama_cpp",
3178
+ "modalities": [
3179
+ "text"
3180
+ ],
3181
+ "context_tokens": 131072,
3182
+ "jurisdiction": "NZ",
3183
+ "residency": [
3184
+ "NZ"
3185
+ ],
3186
+ "license_id": "apache-2.0",
3187
+ "quantization": "Q4_K_M GGUF",
3188
+ "primary_artifact": "qwq-32b-q4_k_m.gguf",
3189
+ "active_params_b": null,
3190
+ "total_params_b": 32,
3191
+ "quality_rank": 1,
3192
+ "cost_rank": 3,
3193
+ "sovereignty_tier": 3,
3194
+ "supports_tools": true,
3195
+ "supports_json": true,
3196
+ "tags": [
3197
+ "reasoning",
3198
+ "qwq",
3199
+ "qwen",
3200
+ "gguf",
3201
+ "chain-of-thought"
3202
+ ],
3203
+ "metadata": {
3204
+ "upstream_repo": "Qwen/QwQ-32B",
3205
+ "release_version": "v0.1.0",
3206
+ "package_state": "weights_mirrored",
3207
+ "public_status": "public and non-gated",
3208
+ "validation_status": "scaffold_verified"
3209
+ }
3210
+ },
3211
+ {
3212
+ "model_id": "lumynax-frontier-phi-4-14b-gguf",
3213
+ "repo_id": "AbteeXAILab/lumynax-frontier-phi-4-14b-gguf",
3214
+ "title": "LumynaX Frontier Phi-4 14B GGUF",
3215
+ "family": "phi",
3216
+ "runtime": "llama_cpp",
3217
+ "modalities": [
3218
+ "text"
3219
+ ],
3220
+ "context_tokens": 16384,
3221
+ "jurisdiction": "NZ",
3222
+ "residency": [
3223
+ "NZ"
3224
+ ],
3225
+ "license_id": "mit",
3226
+ "quantization": "Q4_K_M GGUF",
3227
+ "primary_artifact": "phi-4-Q4_K_M.gguf",
3228
+ "active_params_b": null,
3229
+ "total_params_b": 14,
3230
+ "quality_rank": 2,
3231
+ "cost_rank": 2,
3232
+ "sovereignty_tier": 3,
3233
+ "supports_tools": true,
3234
+ "supports_json": true,
3235
+ "tags": [
3236
+ "frontier",
3237
+ "phi",
3238
+ "microsoft",
3239
+ "gguf",
3240
+ "efficient"
3241
+ ],
3242
+ "metadata": {
3243
+ "upstream_repo": "microsoft/phi-4",
3244
+ "release_version": "v0.1.0",
3245
+ "package_state": "weights_mirrored",
3246
+ "public_status": "public and non-gated",
3247
+ "validation_status": "scaffold_verified"
3248
+ }
3249
+ }
3250
+ ]
3251
+ }
sovereigncode/configs/provider_aliases.yaml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ provider_id: abteex-marama
2
+ base_path: /v1
3
+ default_model_alias: lumynax/auto
4
+ aliases:
5
+ lumynax/auto:
6
+ task_type: general
7
+ requires_local: true
8
+ description: Select the best resident LumynaX model for the request.
9
+ lumynax/code:
10
+ task_type: code
11
+ requires_local: true
12
+ requires_json: true
13
+ description: Prefer coder-tagged LumynaX models with tool and JSON support.
14
+ lumynax/reasoning:
15
+ task_type: reasoning
16
+ requires_local: true
17
+ description: Prefer reasoning-tagged models inside residency constraints.
18
+ lumynax/multimodal:
19
+ task_type: multimodal
20
+ requires_local: false
21
+ description: Prefer text-plus-image LumynaX models when policy allows.
22
+ default_route:
23
+ jurisdiction: NZ
24
+ data_sensitivity: internal
25
+ min_context_tokens: 4096
26
+ max_fallbacks: 3
27
+ telemetry:
28
+ retain_prompt_by_default: false
29
+ retain_route_decision_days: 365
30
+ hash_request_payload: true
sovereigncode/configs/routing_policy.yaml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ policy_id: lumynax-marama-route-default-v0
2
+ default_jurisdiction: NZ
3
+ default_requires_local: true
4
+ high_sensitivity:
5
+ - personal
6
+ - restricted
7
+ - health
8
+ - iwi
9
+ - taonga
10
+ required_for_high_sensitivity:
11
+ min_sovereignty_tier: 2
12
+ residency_must_match_request_jurisdiction: true
13
+ retain_prompt_by_default: false
14
+ preferred_runtimes:
15
+ - llama_cpp
16
+ - transformers_multimodal
17
+ - python_embedding
18
+ fallbacks:
19
+ max_default_fallbacks: 3
20
+ include_rejection_reasons: true
sovereigncode/examples/capsule.personal-sovereignty-profile.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "capsule_id": "cap-personal-profile-001",
3
+ "subject_id": "operator-local-profile",
4
+ "jurisdiction": "NZ",
5
+ "sensitivity": "personal",
6
+ "allowed_purposes": [
7
+ "personal_memory",
8
+ "coding_assistance",
9
+ "inference"
10
+ ],
11
+ "denied_purposes": [
12
+ "ad_training",
13
+ "third_party_resale",
14
+ "public_leaderboard"
15
+ ],
16
+ "resident_regions": [
17
+ "NZ"
18
+ ],
19
+ "data_classes": [
20
+ "personal",
21
+ "preferences",
22
+ "source_code",
23
+ "runtime_logs"
24
+ ],
25
+ "retention_days": 7,
26
+ "export_allowed": false,
27
+ "training_allowed": false,
28
+ "personal_detail_level": "pseudonymous",
29
+ "consent_scopes": [
30
+ "personal_memory",
31
+ "coding_assistance"
32
+ ],
33
+ "data_subject_rights": [
34
+ "access",
35
+ "correction",
36
+ "deletion_request",
37
+ "processing_objection"
38
+ ],
39
+ "schema_context": "https://schema.org",
40
+ "consent_record": "local-profile-consent-v0",
41
+ "metadata": {
42
+ "storage": "local_encrypted_profile_store",
43
+ "prompt_rule": "summarise preferences without exposing raw personal notes"
44
+ }
45
+ }
sovereigncode/examples/capsule.restricted-nz-code.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "capsule_id": "cap-nz-code-001",
3
+ "subject_id": "abx-workspace",
4
+ "jurisdiction": "NZ",
5
+ "sensitivity": "restricted",
6
+ "allowed_purposes": [
7
+ "coding_assistance",
8
+ "inference",
9
+ "test_generation"
10
+ ],
11
+ "denied_purposes": [
12
+ "ad_training",
13
+ "third_party_resale"
14
+ ],
15
+ "resident_regions": [
16
+ "NZ"
17
+ ],
18
+ "data_classes": [
19
+ "source_code",
20
+ "policy",
21
+ "runtime_logs"
22
+ ],
23
+ "retention_days": 14,
24
+ "export_allowed": false,
25
+ "training_allowed": false,
26
+ "schema_context": "https://schema.org",
27
+ "consent_record": "local-operator-policy-v0"
28
+ }
sovereigncode/examples/opencode.marama-route.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "provider": {
4
+ "abteex-marama": {
5
+ "npm": "@ai-sdk/openai-compatible",
6
+ "name": "AbteeX MaramaRoute",
7
+ "options": {
8
+ "baseURL": "http://127.0.0.1:8787/v1",
9
+ "apiKey": "{env:ABTEEX_MARAMA_API_KEY}",
10
+ "headers": {
11
+ "X-AbteeX-Tenant": "{env:ABTEEX_TENANT_ID}",
12
+ "X-AbteeX-Workspace-Capsule": "{env:SOVEREIGNCODE_CAPSULE_ID}"
13
+ }
14
+ },
15
+ "models": {
16
+ "lumynax/auto": {
17
+ "name": "LumynaX Auto Sovereign Route"
18
+ },
19
+ "lumynax/code": {
20
+ "name": "LumynaX Code Route"
21
+ },
22
+ "lumynax/reasoning": {
23
+ "name": "LumynaX Reasoning Route"
24
+ }
25
+ }
26
+ }
27
+ }
28
+ }
sovereigncode/examples/request.allowed-local-edit.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "actor": "developer",
3
+ "purpose": "coding_assistance",
4
+ "action": "read_context",
5
+ "region": "NZ",
6
+ "model_id": "AbteeXAILab/lumynax-infused-qwen3-8b-gguf",
7
+ "data_classes": [
8
+ "source_code"
9
+ ],
10
+ "tool_name": "workspace_reader",
11
+ "writes_files": false,
12
+ "exports_data": false,
13
+ "trains_model": false,
14
+ "human_approved": false
15
+ }
sovereigncode/examples/request.code-restricted.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "prompt": "Refactor this private Python service and explain the diff.",
3
+ "task_type": "code",
4
+ "modalities": [
5
+ "text"
6
+ ],
7
+ "jurisdiction": "NZ",
8
+ "data_sensitivity": "restricted",
9
+ "min_context_tokens": 4096,
10
+ "requires_local": true,
11
+ "requires_tools": false,
12
+ "requires_json": true,
13
+ "max_fallbacks": 3
14
+ }
sovereigncode/examples/request.denied-training.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "actor": "developer",
3
+ "purpose": "coding_assistance",
4
+ "action": "train_adapter",
5
+ "region": "NZ",
6
+ "model_id": "local/lumynax",
7
+ "data_classes": [
8
+ "source_code"
9
+ ],
10
+ "tool_name": "trainer",
11
+ "writes_files": true,
12
+ "exports_data": false,
13
+ "trains_model": true,
14
+ "human_approved": true
15
+ }
sovereigncode/examples/request.openai-chat-code.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": "lumynax/code",
3
+ "messages": [
4
+ {
5
+ "role": "system",
6
+ "content": "You are a governed coding assistant for a New Zealand workspace."
7
+ },
8
+ {
9
+ "role": "user",
10
+ "content": "Refactor this private Python repository function and return a JSON diff plan."
11
+ }
12
+ ],
13
+ "response_format": {
14
+ "type": "json_object"
15
+ },
16
+ "tools": [
17
+ {
18
+ "type": "function",
19
+ "function": {
20
+ "name": "propose_patch",
21
+ "description": "Propose a patch without writing it.",
22
+ "parameters": {
23
+ "type": "object",
24
+ "properties": {
25
+ "files": {
26
+ "type": "array",
27
+ "items": { "type": "string" }
28
+ }
29
+ }
30
+ }
31
+ }
32
+ }
33
+ ],
34
+ "route": {
35
+ "jurisdiction": "NZ",
36
+ "data_sensitivity": "restricted",
37
+ "task_type": "code",
38
+ "requires_local": true,
39
+ "requires_tools": true,
40
+ "requires_json": true,
41
+ "min_context_tokens": 4096,
42
+ "max_fallbacks": 3
43
+ }
44
+ }
sovereigncode/examples/request.personal-memory-read.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "actor": "developer",
3
+ "purpose": "personal_memory",
4
+ "action": "read_context",
5
+ "region": "NZ",
6
+ "model_id": "local/lumynax",
7
+ "data_classes": [
8
+ "personal",
9
+ "preferences"
10
+ ],
11
+ "tool_name": "personal_profile_reader",
12
+ "writes_files": false,
13
+ "exports_data": false,
14
+ "trains_model": false,
15
+ "human_approved": false,
16
+ "personal_detail_level": "pseudonymous",
17
+ "consent_scope": "personal_memory",
18
+ "requested_retention_days": 7
19
+ }
sovereigncode/integrations/opencode-compatible-provider.md ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OpenCode-Compatible Provider Integration
2
+
3
+ ## Goal
4
+
5
+ Make AbteeX SovereignCode usable from OpenCode and similar coding agents without
6
+ requiring those tools to understand Data Capsules directly.
7
+
8
+ The integration shape is:
9
+
10
+ ```text
11
+ OpenCode
12
+ -> OpenAI-compatible provider config
13
+ -> MaramaRoute gateway `/v1`
14
+ -> SovereignCode policy and tool broker
15
+ -> LumynaX model runtime
16
+ ```
17
+
18
+ ## Current Compatibility Target
19
+
20
+ OpenCode supports custom OpenAI-compatible providers through
21
+ `@ai-sdk/openai-compatible` and a provider `baseURL`. OpenRouter exposes an
22
+ OpenAI-like chat endpoint at `/api/v1/chat/completions`, with normalized request
23
+ and response payloads. MaramaRoute should therefore expose:
24
+
25
+ - `GET /v1/models`
26
+ - `POST /v1/chat/completions`
27
+ - `POST /v1/route`
28
+ - `GET /v1/route/{decision_id}`
29
+
30
+ References checked on 2026-05-17:
31
+
32
+ - https://opencode.ai/docs/providers
33
+ - https://openrouter.ai/docs/api-reference/overview/
34
+ - https://openrouter.ai/docs/api-reference/chat-completion
35
+
36
+ ## OpenCode Provider Config
37
+
38
+ Use `examples/opencode.marama-route.json` as the project-local provider file.
39
+
40
+ The important fields are:
41
+
42
+ | Field | Value |
43
+ | --- | --- |
44
+ | `provider.abteex-marama.npm` | `@ai-sdk/openai-compatible` |
45
+ | `provider.abteex-marama.options.baseURL` | Local or hosted MaramaRoute `/v1` URL |
46
+ | `provider.abteex-marama.options.apiKey` | Environment backed key |
47
+ | `provider.abteex-marama.models` | LumynaX model aliases exposed by MaramaRoute |
48
+
49
+ ## SovereignCode Responsibilities
50
+
51
+ OpenCode sends a normal chat request. SovereignCode and MaramaRoute add:
52
+
53
+ - capsule resolution from workspace policy files
54
+ - purpose and personal-detail checks before prompt assembly
55
+ - model routing based on residency, modality, task, and sensitivity
56
+ - visible approval gates before file writes, shell commands, network export, or commit
57
+ - audit records for policy decisions and route decisions
58
+
59
+ ## Workspace Files
60
+
61
+ A governed workspace should carry:
62
+
63
+ ```text
64
+ .sovereigncode/
65
+ capsule.json
66
+ tenant-policy.yaml
67
+ approvals/
68
+ audit/
69
+ opencode.json
70
+ ```
71
+
72
+ The agent can start with `capsule.json` and `opencode.json`. The full tool
73
+ broker can add approvals and audit persistence in the next build stage.
74
+
75
+ ## Minimum Viable Flow
76
+
77
+ 1. User opens a project in OpenCode.
78
+ 2. OpenCode uses the `abteex-marama` provider.
79
+ 3. MaramaRoute dry-runs the chat payload and selects a LumynaX model.
80
+ 4. SovereignCode checks the workspace Data Capsule before exposing context.
81
+ 5. The coding agent proposes a plan.
82
+ 6. File writes require a visible diff and an audit record.
83
+ 7. Shell, network, commit, and publish actions require explicit approval.
84
+
85
+ ## Similar Clients
86
+
87
+ Any client that can point at an OpenAI-compatible endpoint should use the same
88
+ gateway:
89
+
90
+ | Client type | Expected integration |
91
+ | --- | --- |
92
+ | OpenCode | `opencode.json` custom provider |
93
+ | Continue-style IDE assistant | OpenAI-compatible base URL and model ids |
94
+ | Aider-style terminal assistant | OpenAI-compatible base URL and key |
95
+ | Internal agent runner | Direct `/v1/route` and `/v1/chat/completions` calls |
96
+ | Browser console | Same API behind tenant auth |
sovereigncode/integrations/opencode-provider.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "provider": {
4
+ "abteex-marama": {
5
+ "npm": "@ai-sdk/openai-compatible",
6
+ "name": "AbteeX MaramaRoute",
7
+ "options": {
8
+ "baseURL": "http://127.0.0.1:8787/v1",
9
+ "apiKey": "{env:ABTEEX_MARAMA_API_KEY}",
10
+ "headers": {
11
+ "X-AbteeX-Route-Jurisdiction": "NZ",
12
+ "X-AbteeX-Route-Sensitivity": "restricted"
13
+ }
14
+ },
15
+ "models": {
16
+ "lumynax/auto": {
17
+ "name": "LumynaX Auto"
18
+ },
19
+ "lumynax/code": {
20
+ "name": "LumynaX Code"
21
+ },
22
+ "lumynax/local": {
23
+ "name": "LumynaX Local"
24
+ }
25
+ }
26
+ }
27
+ }
28
+ }
sovereigncode/policy-packs/nz-personal-sovereignty.yaml ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ policy_id: abx-sovereigncode-nz-personal-sovereignty-v0
2
+ jurisdiction: NZ
3
+ purpose: governed personal, workspace, and community-context coding assistance
4
+ default_residency:
5
+ - NZ
6
+ allowed_personal_detail_levels:
7
+ - none
8
+ - anonymous
9
+ - pseudonymous
10
+ - identifiable
11
+ - sensitive_identifiable
12
+ default_personal_detail_level: pseudonymous
13
+ consent_scopes:
14
+ coding_assistance:
15
+ allowed_actions:
16
+ - read_context
17
+ - propose_patch
18
+ - generate_tests
19
+ blocked_actions_without_approval:
20
+ - write_file
21
+ - execute_shell
22
+ - commit
23
+ - publish
24
+ - network_export
25
+ personal_memory:
26
+ allowed_actions:
27
+ - read_preference
28
+ - summarise_profile
29
+ blocked_actions_without_approval:
30
+ - export_profile
31
+ - train_adapter
32
+ - share_with_third_party
33
+ retention_defaults:
34
+ restricted_code_days: 14
35
+ personal_trace_days: 7
36
+ audit_record_days: 365
37
+ data_subject_rights:
38
+ - access
39
+ - correction
40
+ - deletion_request
41
+ - processing_objection
42
+ obligations:
43
+ - write_immutable_audit_record
44
+ - minimise_personal_detail_in_prompt
45
+ - keep_personal_trace_inside_capsule_retention
46
+ - show_diff_before_write_or_commit
47
+ - route_only_to_resident_runtime
48
+ - require_human_review_for_external_effects
49
+ model_rules:
50
+ high_impact_requires_lumynax_or_local: true
51
+ restricted_requires_nz_residency: true
52
+ public_may_route_to_approved_global: true
53
+ export_rules:
54
+ default_export_allowed: false
55
+ require_export_manifest: true
56
+ require_named_recipient: true
57
+ training_rules:
58
+ default_training_allowed: false
59
+ require_explicit_capsule_training_allowed: true
sovereigncode/schemas/data_capsule.schema.json ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://abteex.com/schemas/sovereigncode/data-capsule.schema.json",
4
+ "title": "AbteeX SovereignCode Data Capsule",
5
+ "type": "object",
6
+ "required": ["capsule_id", "subject_id", "jurisdiction", "sensitivity"],
7
+ "additionalProperties": true,
8
+ "properties": {
9
+ "capsule_id": {
10
+ "type": "string",
11
+ "minLength": 1
12
+ },
13
+ "subject_id": {
14
+ "type": "string",
15
+ "minLength": 1
16
+ },
17
+ "jurisdiction": {
18
+ "type": "string",
19
+ "default": "NZ"
20
+ },
21
+ "sensitivity": {
22
+ "type": "string",
23
+ "enum": ["public", "internal", "restricted", "personal", "health", "iwi", "taonga"]
24
+ },
25
+ "allowed_purposes": {
26
+ "type": "array",
27
+ "items": { "type": "string" },
28
+ "default": ["inference", "coding_assistance"]
29
+ },
30
+ "denied_purposes": {
31
+ "type": "array",
32
+ "items": { "type": "string" },
33
+ "default": []
34
+ },
35
+ "resident_regions": {
36
+ "type": "array",
37
+ "items": { "type": "string" },
38
+ "default": ["NZ"]
39
+ },
40
+ "data_classes": {
41
+ "type": "array",
42
+ "items": { "type": "string" },
43
+ "default": ["source_code"]
44
+ },
45
+ "retention_days": {
46
+ "type": "integer",
47
+ "minimum": 0,
48
+ "default": 30
49
+ },
50
+ "export_allowed": {
51
+ "type": "boolean",
52
+ "default": false
53
+ },
54
+ "training_allowed": {
55
+ "type": "boolean",
56
+ "default": false
57
+ },
58
+ "personal_detail_level": {
59
+ "type": "string",
60
+ "enum": ["none", "anonymous", "pseudonymous", "identifiable", "sensitive_identifiable"],
61
+ "default": "none"
62
+ },
63
+ "consent_scopes": {
64
+ "type": "array",
65
+ "items": { "type": "string" },
66
+ "default": []
67
+ },
68
+ "data_subject_rights": {
69
+ "type": "array",
70
+ "items": { "type": "string" },
71
+ "default": ["access", "correction", "deletion_request", "processing_objection"]
72
+ },
73
+ "revoked": {
74
+ "type": "boolean",
75
+ "default": false
76
+ },
77
+ "schema_context": {
78
+ "type": "string",
79
+ "default": "https://schema.org"
80
+ },
81
+ "consent_record": {
82
+ "type": "string"
83
+ },
84
+ "metadata": {
85
+ "type": "object"
86
+ }
87
+ }
88
+ }
sovereigncode/schemas/openai_chat_route_request.schema.json ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://abteex.com/schemas/marama-route/openai-chat-route-request.schema.json",
4
+ "title": "MaramaRoute OpenAI-Compatible Chat Route Request",
5
+ "type": "object",
6
+ "required": ["messages"],
7
+ "additionalProperties": true,
8
+ "properties": {
9
+ "model": {
10
+ "type": "string",
11
+ "default": "lumynax/auto"
12
+ },
13
+ "messages": {
14
+ "type": "array",
15
+ "items": {
16
+ "type": "object",
17
+ "required": ["role", "content"],
18
+ "properties": {
19
+ "role": {
20
+ "type": "string"
21
+ },
22
+ "content": {}
23
+ },
24
+ "additionalProperties": true
25
+ }
26
+ },
27
+ "tools": {
28
+ "type": "array"
29
+ },
30
+ "response_format": {
31
+ "type": "object"
32
+ },
33
+ "route": {
34
+ "$ref": "#/$defs/routeOptions"
35
+ },
36
+ "routing": {
37
+ "$ref": "#/$defs/routeOptions"
38
+ },
39
+ "metadata": {
40
+ "type": "object",
41
+ "properties": {
42
+ "marama_route": {
43
+ "$ref": "#/$defs/routeOptions"
44
+ }
45
+ },
46
+ "additionalProperties": true
47
+ }
48
+ },
49
+ "$defs": {
50
+ "routeOptions": {
51
+ "type": "object",
52
+ "additionalProperties": true,
53
+ "properties": {
54
+ "jurisdiction": {
55
+ "type": "string",
56
+ "default": "NZ"
57
+ },
58
+ "data_sensitivity": {
59
+ "type": "string",
60
+ "default": "internal"
61
+ },
62
+ "task_type": {
63
+ "type": "string",
64
+ "enum": ["general", "code", "reasoning", "multimodal", "embedding"]
65
+ },
66
+ "min_context_tokens": {
67
+ "type": "integer",
68
+ "minimum": 1,
69
+ "default": 4096
70
+ },
71
+ "requires_local": {
72
+ "type": "boolean",
73
+ "default": true
74
+ },
75
+ "requires_tools": {
76
+ "type": "boolean",
77
+ "default": false
78
+ },
79
+ "requires_json": {
80
+ "type": "boolean",
81
+ "default": false
82
+ },
83
+ "license_allowlist": {
84
+ "type": "array",
85
+ "items": { "type": "string" }
86
+ },
87
+ "max_fallbacks": {
88
+ "type": "integer",
89
+ "minimum": 0,
90
+ "default": 3
91
+ }
92
+ }
93
+ }
94
+ }
95
+ }
sovereigncode/ui.py ADDED
@@ -0,0 +1,566 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from __future__ import annotations
2
+
3
+ import json
4
+ from pathlib import Path
5
+ from typing import Any
6
+
7
+ from ._ui_server import serve_dashboard
8
+
9
+ try:
10
+ from tinyluminax.products.marama_route import RoutingRequest, load_model_registry
11
+ except ModuleNotFoundError: # standalone HF package
12
+ from marama_route import ( # type: ignore[no-redef]
13
+ RoutingRequest,
14
+ load_model_registry,
15
+ )
16
+
17
+ from .audit import build_audit_record
18
+ from .planner import plan_coding_turn
19
+ from .policy import DataCapsule, SovereignRequest, SovereigntyPolicyEngine
20
+
21
+ PRODUCT_NAME = "AbteeX SovereignCode"
22
+ PACKAGE_ROOT = Path(__file__).resolve().parent
23
+ PACKAGE_PARENT = PACKAGE_ROOT.parent
24
+
25
+
26
+ def default_capsule_path() -> Path:
27
+ return _first_existing(
28
+ [
29
+ Path.cwd() / "products" / "abx-sovereigncode" / "examples" / "capsule.restricted-nz-code.json",
30
+ Path.cwd() / "examples" / "capsule.restricted-nz-code.json",
31
+ PACKAGE_ROOT / "examples" / "capsule.restricted-nz-code.json",
32
+ PACKAGE_PARENT / "examples" / "capsule.restricted-nz-code.json",
33
+ ],
34
+ )
35
+
36
+
37
+ def default_request_path() -> Path:
38
+ return _first_existing(
39
+ [
40
+ Path.cwd() / "products" / "abx-sovereigncode" / "examples" / "request.allowed-local-edit.json",
41
+ Path.cwd() / "examples" / "request.allowed-local-edit.json",
42
+ PACKAGE_ROOT / "examples" / "request.allowed-local-edit.json",
43
+ PACKAGE_PARENT / "examples" / "request.allowed-local-edit.json",
44
+ ],
45
+ )
46
+
47
+
48
+ def default_personal_capsule_path() -> Path:
49
+ return _first_existing(
50
+ [
51
+ Path.cwd()
52
+ / "products"
53
+ / "abx-sovereigncode"
54
+ / "examples"
55
+ / "capsule.personal-sovereignty-profile.json",
56
+ Path.cwd() / "examples" / "capsule.personal-sovereignty-profile.json",
57
+ PACKAGE_ROOT / "examples" / "capsule.personal-sovereignty-profile.json",
58
+ PACKAGE_PARENT / "examples" / "capsule.personal-sovereignty-profile.json",
59
+ ],
60
+ )
61
+
62
+
63
+ def default_personal_request_path() -> Path:
64
+ return _first_existing(
65
+ [
66
+ Path.cwd() / "products" / "abx-sovereigncode" / "examples" / "request.personal-memory-read.json",
67
+ Path.cwd() / "examples" / "request.personal-memory-read.json",
68
+ PACKAGE_ROOT / "examples" / "request.personal-memory-read.json",
69
+ PACKAGE_PARENT / "examples" / "request.personal-memory-read.json",
70
+ ],
71
+ )
72
+
73
+
74
+ def default_route_request_path() -> Path:
75
+ return _first_existing(
76
+ [
77
+ Path.cwd() / "products" / "lumynax-marama-route" / "examples" / "request.code-restricted.json",
78
+ Path.cwd() / "examples" / "request.code-restricted.json",
79
+ PACKAGE_ROOT / "examples" / "request.code-restricted.json",
80
+ PACKAGE_PARENT / "examples" / "request.code-restricted.json",
81
+ ],
82
+ )
83
+
84
+
85
+ def default_registry_path() -> Path:
86
+ return _first_existing(
87
+ [
88
+ Path.cwd() / "products" / "lumynax-marama-route" / "configs" / "lumynax_model_registry.json",
89
+ Path.cwd() / "configs" / "lumynax_model_registry.json",
90
+ PACKAGE_ROOT / "configs" / "lumynax_model_registry.json",
91
+ PACKAGE_PARENT / "configs" / "lumynax_model_registry.json",
92
+ ],
93
+ )
94
+
95
+
96
+ def _first_existing(candidates: list[Path]) -> Path:
97
+ for path in candidates:
98
+ if path.exists():
99
+ return path
100
+ return candidates[0]
101
+
102
+
103
+ def load_json_mapping(path: Path) -> dict[str, Any]:
104
+ payload = json.loads(path.read_text(encoding="utf-8-sig"))
105
+ if not isinstance(payload, dict):
106
+ raise ValueError(f"Expected JSON object in {path}")
107
+ return payload
108
+
109
+
110
+ def evaluate_dashboard_payload(
111
+ payload: dict[str, Any],
112
+ registry_path: Path,
113
+ ) -> dict[str, Any]:
114
+ capsule_payload = _mapping(payload.get("capsule"))
115
+ request_payload = _mapping(payload.get("request"))
116
+ if not capsule_payload or not request_payload:
117
+ raise ValueError("Payload must include `capsule` and `request` objects")
118
+
119
+ capsule = DataCapsule.from_payload(capsule_payload)
120
+ request = SovereignRequest.from_payload(request_payload)
121
+ decision = SovereigntyPolicyEngine().evaluate(capsule, request)
122
+ audit = build_audit_record(capsule, request, decision)
123
+ result: dict[str, Any] = {
124
+ "ok": decision.allowed,
125
+ "decision": decision.to_dict(),
126
+ "audit_record": audit.to_dict(),
127
+ }
128
+
129
+ route_payload = _mapping(payload.get("route_request"))
130
+ if route_payload:
131
+ models = load_model_registry(registry_path)
132
+ route_request = RoutingRequest.from_payload(route_payload)
133
+ plan = plan_coding_turn(capsule, request, route_request, models)
134
+ result["ok"] = plan.allowed
135
+ result["plan"] = plan.to_dict()
136
+ return result
137
+
138
+
139
+ def build_dashboard_state(
140
+ capsule_path: Path,
141
+ request_path: Path,
142
+ route_request_path: Path,
143
+ registry_path: Path,
144
+ ) -> dict[str, Any]:
145
+ personal_capsule = (
146
+ load_json_mapping(default_personal_capsule_path())
147
+ if default_personal_capsule_path().exists()
148
+ else _fallback_personal_capsule()
149
+ )
150
+ personal_request = (
151
+ load_json_mapping(default_personal_request_path())
152
+ if default_personal_request_path().exists()
153
+ else _fallback_personal_request()
154
+ )
155
+ models = load_model_registry(registry_path)
156
+ return {
157
+ "capsule": load_json_mapping(capsule_path),
158
+ "request": load_json_mapping(request_path),
159
+ "route_request": load_json_mapping(route_request_path),
160
+ "personal_capsule": personal_capsule,
161
+ "personal_request": personal_request,
162
+ "registry_path": str(registry_path),
163
+ "model_count": len(models),
164
+ }
165
+
166
+
167
+ def handle_api_request(
168
+ method: str,
169
+ path: str,
170
+ payload: dict[str, Any] | None,
171
+ registry_path: Path,
172
+ state: dict[str, Any],
173
+ ) -> tuple[int, dict[str, Any]]:
174
+ if method == "GET" and path == "/api/health":
175
+ return 200, {
176
+ "ok": True,
177
+ "product": PRODUCT_NAME,
178
+ "model_count": state["model_count"],
179
+ }
180
+ if method == "GET" and path == "/api/state":
181
+ return 200, {"ok": True, **state}
182
+ if method == "POST" and path in {"/api/evaluate", "/api/plan"} and payload is not None:
183
+ result = evaluate_dashboard_payload(payload, registry_path)
184
+ return (200 if result["ok"] else 422), result
185
+ return 404, {"ok": False, "error": "not_found"}
186
+
187
+
188
+ def smoke_ui(
189
+ *,
190
+ capsule_path: Path | None = None,
191
+ request_path: Path | None = None,
192
+ route_request_path: Path | None = None,
193
+ registry_path: Path | None = None,
194
+ ) -> dict[str, Any]:
195
+ resolved_capsule = capsule_path or default_capsule_path()
196
+ resolved_request = request_path or default_request_path()
197
+ resolved_route = route_request_path or default_route_request_path()
198
+ resolved_registry = registry_path or default_registry_path()
199
+ state = build_dashboard_state(
200
+ resolved_capsule,
201
+ resolved_request,
202
+ resolved_route,
203
+ resolved_registry,
204
+ )
205
+ result = evaluate_dashboard_payload(
206
+ {
207
+ "capsule": state["capsule"],
208
+ "request": state["request"],
209
+ "route_request": state["route_request"],
210
+ },
211
+ resolved_registry,
212
+ )
213
+ if not result["ok"]:
214
+ raise RuntimeError("SovereignCode UI smoke plan was blocked")
215
+ selected = result["plan"]["route_decision"]["selected_model"]["model_id"]
216
+ return {
217
+ "ok": True,
218
+ "product": PRODUCT_NAME,
219
+ "model_count": state["model_count"],
220
+ "selected_model": selected,
221
+ }
222
+
223
+
224
+ def run_ui(
225
+ *,
226
+ capsule_path: Path | None = None,
227
+ request_path: Path | None = None,
228
+ route_request_path: Path | None = None,
229
+ registry_path: Path | None = None,
230
+ host: str = "127.0.0.1",
231
+ port: int = 8788,
232
+ open_browser: bool = False,
233
+ smoke: bool = False,
234
+ ) -> int:
235
+ resolved_capsule = capsule_path or default_capsule_path()
236
+ resolved_request = request_path or default_request_path()
237
+ resolved_route = route_request_path or default_route_request_path()
238
+ resolved_registry = registry_path or default_registry_path()
239
+ if smoke:
240
+ print(
241
+ json.dumps(
242
+ smoke_ui(
243
+ capsule_path=resolved_capsule,
244
+ request_path=resolved_request,
245
+ route_request_path=resolved_route,
246
+ registry_path=resolved_registry,
247
+ ),
248
+ indent=2,
249
+ sort_keys=True,
250
+ ),
251
+ )
252
+ return 0
253
+
254
+ state = build_dashboard_state(
255
+ resolved_capsule,
256
+ resolved_request,
257
+ resolved_route,
258
+ resolved_registry,
259
+ )
260
+ html = build_dashboard_html(state)
261
+ return serve_dashboard(
262
+ product_name=PRODUCT_NAME,
263
+ html=html,
264
+ api_handler=lambda method, path, payload: handle_api_request(
265
+ method,
266
+ path,
267
+ payload,
268
+ resolved_registry,
269
+ state,
270
+ ),
271
+ host=host,
272
+ port=port,
273
+ open_browser=open_browser,
274
+ )
275
+
276
+
277
+ def build_dashboard_html(state: dict[str, Any]) -> str:
278
+ initial = json.dumps(state, sort_keys=True).replace("</", "<\\/")
279
+ return f"""<!doctype html>
280
+ <html lang="en">
281
+ <head>
282
+ <meta charset="utf-8" />
283
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
284
+ <title>AbteeX SovereignCode</title>
285
+ <style>
286
+ :root {{
287
+ --paper: #fffefa;
288
+ --ink: #0a0a0b;
289
+ --muted: #726b62;
290
+ --rule: #ded6c8;
291
+ --amber: #e08a2c;
292
+ --amber-dark: #9a5416;
293
+ --green: #275f45;
294
+ --red: #8f2e24;
295
+ --panel: #f7f1e7;
296
+ --mono: "Cascadia Code", "SFMono-Regular", Menlo, Consolas, monospace;
297
+ --serif: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
298
+ }}
299
+ * {{ box-sizing: border-box; }}
300
+ body {{
301
+ margin: 0;
302
+ background: var(--paper);
303
+ color: var(--ink);
304
+ font-family: var(--serif);
305
+ }}
306
+ .shell {{
307
+ min-height: 100vh;
308
+ display: grid;
309
+ grid-template-rows: auto 1fr;
310
+ }}
311
+ header {{
312
+ border-bottom: 1px solid var(--rule);
313
+ padding: 18px 28px 14px;
314
+ display: grid;
315
+ grid-template-columns: 1fr auto;
316
+ gap: 20px;
317
+ align-items: end;
318
+ }}
319
+ h1 {{
320
+ font-size: clamp(28px, 4vw, 50px);
321
+ line-height: .95;
322
+ margin: 0;
323
+ letter-spacing: 0;
324
+ }}
325
+ .subtitle, .meta, label, button, select {{
326
+ font-family: var(--mono);
327
+ font-size: 12px;
328
+ letter-spacing: 0;
329
+ }}
330
+ .subtitle {{ color: var(--muted); margin-top: 8px; }}
331
+ .meta {{
332
+ display: grid;
333
+ grid-template-columns: repeat(3, minmax(110px, 1fr));
334
+ gap: 8px;
335
+ min-width: min(430px, 44vw);
336
+ }}
337
+ .metric {{
338
+ border-left: 2px solid var(--amber);
339
+ padding: 4px 0 4px 10px;
340
+ }}
341
+ .metric strong {{
342
+ display: block;
343
+ font-size: 20px;
344
+ font-family: var(--serif);
345
+ }}
346
+ main {{
347
+ display: grid;
348
+ grid-template-columns: minmax(380px, 45vw) 1fr;
349
+ min-height: 0;
350
+ }}
351
+ .left, .right {{ padding: 22px; min-width: 0; }}
352
+ .left {{ border-right: 1px solid var(--rule); background: #fffaf2; }}
353
+ .toolbar {{
354
+ display: flex;
355
+ gap: 8px;
356
+ align-items: center;
357
+ flex-wrap: wrap;
358
+ margin-bottom: 12px;
359
+ }}
360
+ .editor-grid {{
361
+ display: grid;
362
+ gap: 12px;
363
+ }}
364
+ textarea, pre, .card {{
365
+ border: 1px solid var(--rule);
366
+ background: var(--paper);
367
+ color: var(--ink);
368
+ border-radius: 6px;
369
+ }}
370
+ textarea {{
371
+ width: 100%;
372
+ min-height: 170px;
373
+ resize: vertical;
374
+ padding: 12px;
375
+ font-family: var(--mono);
376
+ font-size: 12px;
377
+ line-height: 1.45;
378
+ }}
379
+ #routeRequest {{ min-height: 138px; }}
380
+ button {{
381
+ appearance: none;
382
+ border: 1px solid var(--ink);
383
+ background: var(--ink);
384
+ color: var(--paper);
385
+ border-radius: 4px;
386
+ min-height: 34px;
387
+ padding: 0 12px;
388
+ cursor: pointer;
389
+ }}
390
+ button.secondary {{ background: transparent; color: var(--ink); border-color: var(--rule); }}
391
+ .status {{
392
+ display: grid;
393
+ grid-template-columns: repeat(3, minmax(0, 1fr));
394
+ gap: 10px;
395
+ margin-bottom: 14px;
396
+ }}
397
+ .card {{ padding: 14px; min-height: 86px; }}
398
+ .card b {{ display: block; font-size: 12px; font-family: var(--mono); color: var(--muted); }}
399
+ .card span {{ display: block; margin-top: 8px; font-size: 18px; overflow-wrap: anywhere; }}
400
+ pre {{
401
+ margin: 0;
402
+ padding: 16px;
403
+ min-height: 590px;
404
+ max-height: 72vh;
405
+ overflow: auto;
406
+ font-family: var(--mono);
407
+ font-size: 12px;
408
+ line-height: 1.45;
409
+ }}
410
+ .ok {{ color: var(--green); }}
411
+ .bad {{ color: var(--red); }}
412
+ @media (max-width: 980px) {{
413
+ header, main {{ grid-template-columns: 1fr; }}
414
+ .meta {{ min-width: 0; grid-template-columns: repeat(3, 1fr); }}
415
+ .left {{ border-right: 0; border-bottom: 1px solid var(--rule); }}
416
+ pre {{ min-height: 360px; }}
417
+ }}
418
+ </style>
419
+ </head>
420
+ <body>
421
+ <div class="shell">
422
+ <header>
423
+ <div>
424
+ <h1>AbteeX<br />SovereignCode</h1>
425
+ <div class="subtitle">Data Capsule policy, model route, tool grants, audit trace</div>
426
+ </div>
427
+ <div class="meta">
428
+ <div class="metric"><strong id="modelCount">0</strong>models</div>
429
+ <div class="metric"><strong>NZ</strong>resident default</div>
430
+ <div class="metric"><strong>0</strong>export default</div>
431
+ </div>
432
+ </header>
433
+ <main>
434
+ <section class="left">
435
+ <div class="toolbar">
436
+ <button id="planBtn">Plan Turn</button>
437
+ <button class="secondary" id="evaluateBtn">Evaluate</button>
438
+ <button class="secondary" id="restrictedBtn">Restricted</button>
439
+ <button class="secondary" id="personalBtn">Personal</button>
440
+ </div>
441
+ <div class="editor-grid">
442
+ <div>
443
+ <label for="capsule">DATA CAPSULE</label>
444
+ <textarea id="capsule" spellcheck="false"></textarea>
445
+ </div>
446
+ <div>
447
+ <label for="request">SOVEREIGN REQUEST</label>
448
+ <textarea id="request" spellcheck="false"></textarea>
449
+ </div>
450
+ <div>
451
+ <label for="routeRequest">ROUTE REQUEST</label>
452
+ <textarea id="routeRequest" spellcheck="false"></textarea>
453
+ </div>
454
+ </div>
455
+ </section>
456
+ <section class="right">
457
+ <div class="status">
458
+ <div class="card"><b>DECISION</b><span id="decision">pending</span></div>
459
+ <div class="card"><b>MODEL</b><span id="selected">pending</span></div>
460
+ <div class="card"><b>TOOL GRANTS</b><span id="grants">0</span></div>
461
+ </div>
462
+ <pre id="output"></pre>
463
+ </section>
464
+ </main>
465
+ </div>
466
+ <script type="application/json" id="initial-state">{initial}</script>
467
+ <script>
468
+ const state = JSON.parse(document.getElementById('initial-state').textContent);
469
+ const capsule = document.getElementById('capsule');
470
+ const request = document.getElementById('request');
471
+ const routeRequest = document.getElementById('routeRequest');
472
+ const output = document.getElementById('output');
473
+ const decision = document.getElementById('decision');
474
+ const selected = document.getElementById('selected');
475
+ const grants = document.getElementById('grants');
476
+ document.getElementById('modelCount').textContent = state.model_count;
477
+
478
+ function loadRestricted() {{
479
+ capsule.value = JSON.stringify(state.capsule, null, 2);
480
+ request.value = JSON.stringify(state.request, null, 2);
481
+ routeRequest.value = JSON.stringify(state.route_request, null, 2);
482
+ }}
483
+ function loadPersonal() {{
484
+ capsule.value = JSON.stringify(state.personal_capsule, null, 2);
485
+ request.value = JSON.stringify(state.personal_request, null, 2);
486
+ routeRequest.value = JSON.stringify(state.route_request, null, 2);
487
+ }}
488
+ loadRestricted();
489
+ output.textContent = JSON.stringify({{status: 'ready', registry: state.registry_path}}, null, 2);
490
+
491
+ function readPayload(includeRoute) {{
492
+ const payload = {{
493
+ capsule: JSON.parse(capsule.value),
494
+ request: JSON.parse(request.value)
495
+ }};
496
+ if (includeRoute) payload.route_request = JSON.parse(routeRequest.value);
497
+ return payload;
498
+ }}
499
+ function setResult(data) {{
500
+ output.textContent = JSON.stringify(data, null, 2);
501
+ const allowed = data.ok === true;
502
+ decision.textContent = allowed ? 'allowed' : 'blocked';
503
+ decision.className = allowed ? 'ok' : 'bad';
504
+ const plan = data.plan || {{}};
505
+ const route = plan.route_decision || {{}};
506
+ const model = route.selected_model;
507
+ selected.textContent = model ? model.model_id : 'none';
508
+ selected.className = model ? 'ok' : 'bad';
509
+ grants.textContent = plan.tool_grants ? plan.tool_grants.length : 0;
510
+ }}
511
+ async function submit(includeRoute) {{
512
+ let payload;
513
+ try {{
514
+ payload = readPayload(includeRoute);
515
+ }} catch (error) {{
516
+ setResult({{ok: false, error: error.message}});
517
+ return;
518
+ }}
519
+ const response = await fetch(includeRoute ? '/api/plan' : '/api/evaluate', {{
520
+ method: 'POST',
521
+ headers: {{'Content-Type': 'application/json'}},
522
+ body: JSON.stringify(payload)
523
+ }});
524
+ setResult(await response.json());
525
+ }}
526
+ document.getElementById('planBtn').addEventListener('click', () => submit(true));
527
+ document.getElementById('evaluateBtn').addEventListener('click', () => submit(false));
528
+ document.getElementById('restrictedBtn').addEventListener('click', loadRestricted);
529
+ document.getElementById('personalBtn').addEventListener('click', loadPersonal);
530
+ </script>
531
+ </body>
532
+ </html>"""
533
+
534
+
535
+ def _mapping(value: object) -> dict[str, Any]:
536
+ return dict(value) if isinstance(value, dict) else {}
537
+
538
+
539
+ def _fallback_personal_capsule() -> dict[str, Any]:
540
+ return {
541
+ "capsule_id": "cap-personal-profile-001",
542
+ "subject_id": "operator-local-profile",
543
+ "jurisdiction": "NZ",
544
+ "sensitivity": "personal",
545
+ "allowed_purposes": ["personal_memory", "coding_assistance"],
546
+ "resident_regions": ["NZ"],
547
+ "data_classes": ["personal", "preferences", "source_code"],
548
+ "retention_days": 7,
549
+ "export_allowed": False,
550
+ "training_allowed": False,
551
+ "personal_detail_level": "pseudonymous",
552
+ "consent_scopes": ["personal_memory", "coding_assistance"],
553
+ }
554
+
555
+
556
+ def _fallback_personal_request() -> dict[str, Any]:
557
+ return {
558
+ "actor": "developer",
559
+ "purpose": "personal_memory",
560
+ "action": "read_context",
561
+ "region": "NZ",
562
+ "model_id": "local/lumynax",
563
+ "data_classes": ["personal", "preferences"],
564
+ "personal_detail_level": "pseudonymous",
565
+ "consent_scope": "personal_memory",
566
+ }