pre-reasoning 2.5.2__tar.gz → 2.5.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pre_reasoning-2.5.2/pre_reasoning.egg-info → pre_reasoning-2.5.3}/PKG-INFO +9 -9
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/README.md +8 -8
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3/pre_reasoning.egg-info}/PKG-INFO +9 -9
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pyproject.toml +1 -1
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/LICENSE +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/MANIFEST.in +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pre_reasoning/__init__.py +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pre_reasoning/checkpoints/__init__.py +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pre_reasoning/checkpoints/pre-reasoning-3m-v2.5.safetensors +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pre_reasoning/cli.py +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pre_reasoning/heuristic.py +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pre_reasoning/inference.py +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pre_reasoning/pre_reasoning_v2_5.py +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pre_reasoning.egg-info/SOURCES.txt +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pre_reasoning.egg-info/dependency_links.txt +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pre_reasoning.egg-info/entry_points.txt +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pre_reasoning.egg-info/requires.txt +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/pre_reasoning.egg-info/top_level.txt +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/setup.cfg +0 -0
- {pre_reasoning-2.5.2 → pre_reasoning-2.5.3}/tests/test_engine.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pre-reasoning
|
|
3
|
-
Version: 2.5.
|
|
3
|
+
Version: 2.5.3
|
|
4
4
|
Summary: 3M-parameter neural pre-reasoning engine for grounding LLMs before they answer.
|
|
5
5
|
Author: Luis Lozano, Dr. Shannon (Mia Labs AI co-researcher), Mia Labs
|
|
6
6
|
License-Expression: MIT
|
|
@@ -25,7 +25,7 @@ Dynamic: license-file
|
|
|
25
25
|
|
|
26
26
|
# Pre-Reasoning
|
|
27
27
|
|
|
28
|
-
Pre-Reasoning is a Mia Labs structural analysis engine that grounds an LLM before it answers. It uses a 3M-parameter neural model
|
|
28
|
+
Pre-Reasoning is a Mia Labs structural analysis engine that grounds an LLM before it answers. It uses a 3M-parameter neural model to surface dependencies, root blockers, unlock order, parallel work, cycles, and conflicts from problem text.
|
|
29
29
|
|
|
30
30
|
The engine ships with bundled safetensors weights and torch -- install and run, no downloads needed.
|
|
31
31
|
|
|
@@ -93,9 +93,9 @@ These are product-research notes, not benchmark claims.
|
|
|
93
93
|
|
|
94
94
|
```text
|
|
95
95
|
User text
|
|
96
|
-
->
|
|
96
|
+
-> neural perception (3M params, safetensors)
|
|
97
97
|
-> neural findings converted to structural blocks
|
|
98
|
-
->
|
|
98
|
+
-> graph reasoning
|
|
99
99
|
-> structural trace
|
|
100
100
|
```
|
|
101
101
|
|
|
@@ -104,14 +104,14 @@ User text
|
|
|
104
104
|
| Path | Purpose |
|
|
105
105
|
|---|---|
|
|
106
106
|
| `pre_reasoning/` | Installable Python package and CLI entry point |
|
|
107
|
-
| `pre_reasoning/inference.py` | 3M-parameter
|
|
108
|
-
| `pre_reasoning/heuristic.py` |
|
|
109
|
-
| `pre_reasoning/pre_reasoning_v2_5.py` | v2.5
|
|
110
|
-
| `pre_reasoning/checkpoints/pre-reasoning-3m-v2.5.safetensors` | Bundled
|
|
107
|
+
| `pre_reasoning/inference.py` | 3M-parameter neural perception layer |
|
|
108
|
+
| `pre_reasoning/heuristic.py` | Graph-reasoning core |
|
|
109
|
+
| `pre_reasoning/pre_reasoning_v2_5.py` | v2.5 engine: neural perception + graph reasoning |
|
|
110
|
+
| `pre_reasoning/checkpoints/pre-reasoning-3m-v2.5.safetensors` | Bundled model weights (11MB) |
|
|
111
111
|
| `examples/` | Runnable usage examples |
|
|
112
112
|
| `tests/` | Pytest suite |
|
|
113
113
|
| `skill/SKILL.md` | Agent skill descriptor for model adoption |
|
|
114
|
-
| `CLAUDE.md` |
|
|
114
|
+
| `CLAUDE.md` | Claude Code adoption and grounding-hook guide |
|
|
115
115
|
| `WHY_TRACES_WORK.md` | Literature connection, 9 cited papers |
|
|
116
116
|
|
|
117
117
|
## Weights Policy
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Pre-Reasoning
|
|
2
2
|
|
|
3
|
-
Pre-Reasoning is a Mia Labs structural analysis engine that grounds an LLM before it answers. It uses a 3M-parameter neural model
|
|
3
|
+
Pre-Reasoning is a Mia Labs structural analysis engine that grounds an LLM before it answers. It uses a 3M-parameter neural model to surface dependencies, root blockers, unlock order, parallel work, cycles, and conflicts from problem text.
|
|
4
4
|
|
|
5
5
|
The engine ships with bundled safetensors weights and torch -- install and run, no downloads needed.
|
|
6
6
|
|
|
@@ -68,9 +68,9 @@ These are product-research notes, not benchmark claims.
|
|
|
68
68
|
|
|
69
69
|
```text
|
|
70
70
|
User text
|
|
71
|
-
->
|
|
71
|
+
-> neural perception (3M params, safetensors)
|
|
72
72
|
-> neural findings converted to structural blocks
|
|
73
|
-
->
|
|
73
|
+
-> graph reasoning
|
|
74
74
|
-> structural trace
|
|
75
75
|
```
|
|
76
76
|
|
|
@@ -79,14 +79,14 @@ User text
|
|
|
79
79
|
| Path | Purpose |
|
|
80
80
|
|---|---|
|
|
81
81
|
| `pre_reasoning/` | Installable Python package and CLI entry point |
|
|
82
|
-
| `pre_reasoning/inference.py` | 3M-parameter
|
|
83
|
-
| `pre_reasoning/heuristic.py` |
|
|
84
|
-
| `pre_reasoning/pre_reasoning_v2_5.py` | v2.5
|
|
85
|
-
| `pre_reasoning/checkpoints/pre-reasoning-3m-v2.5.safetensors` | Bundled
|
|
82
|
+
| `pre_reasoning/inference.py` | 3M-parameter neural perception layer |
|
|
83
|
+
| `pre_reasoning/heuristic.py` | Graph-reasoning core |
|
|
84
|
+
| `pre_reasoning/pre_reasoning_v2_5.py` | v2.5 engine: neural perception + graph reasoning |
|
|
85
|
+
| `pre_reasoning/checkpoints/pre-reasoning-3m-v2.5.safetensors` | Bundled model weights (11MB) |
|
|
86
86
|
| `examples/` | Runnable usage examples |
|
|
87
87
|
| `tests/` | Pytest suite |
|
|
88
88
|
| `skill/SKILL.md` | Agent skill descriptor for model adoption |
|
|
89
|
-
| `CLAUDE.md` |
|
|
89
|
+
| `CLAUDE.md` | Claude Code adoption and grounding-hook guide |
|
|
90
90
|
| `WHY_TRACES_WORK.md` | Literature connection, 9 cited papers |
|
|
91
91
|
|
|
92
92
|
## Weights Policy
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pre-reasoning
|
|
3
|
-
Version: 2.5.
|
|
3
|
+
Version: 2.5.3
|
|
4
4
|
Summary: 3M-parameter neural pre-reasoning engine for grounding LLMs before they answer.
|
|
5
5
|
Author: Luis Lozano, Dr. Shannon (Mia Labs AI co-researcher), Mia Labs
|
|
6
6
|
License-Expression: MIT
|
|
@@ -25,7 +25,7 @@ Dynamic: license-file
|
|
|
25
25
|
|
|
26
26
|
# Pre-Reasoning
|
|
27
27
|
|
|
28
|
-
Pre-Reasoning is a Mia Labs structural analysis engine that grounds an LLM before it answers. It uses a 3M-parameter neural model
|
|
28
|
+
Pre-Reasoning is a Mia Labs structural analysis engine that grounds an LLM before it answers. It uses a 3M-parameter neural model to surface dependencies, root blockers, unlock order, parallel work, cycles, and conflicts from problem text.
|
|
29
29
|
|
|
30
30
|
The engine ships with bundled safetensors weights and torch -- install and run, no downloads needed.
|
|
31
31
|
|
|
@@ -93,9 +93,9 @@ These are product-research notes, not benchmark claims.
|
|
|
93
93
|
|
|
94
94
|
```text
|
|
95
95
|
User text
|
|
96
|
-
->
|
|
96
|
+
-> neural perception (3M params, safetensors)
|
|
97
97
|
-> neural findings converted to structural blocks
|
|
98
|
-
->
|
|
98
|
+
-> graph reasoning
|
|
99
99
|
-> structural trace
|
|
100
100
|
```
|
|
101
101
|
|
|
@@ -104,14 +104,14 @@ User text
|
|
|
104
104
|
| Path | Purpose |
|
|
105
105
|
|---|---|
|
|
106
106
|
| `pre_reasoning/` | Installable Python package and CLI entry point |
|
|
107
|
-
| `pre_reasoning/inference.py` | 3M-parameter
|
|
108
|
-
| `pre_reasoning/heuristic.py` |
|
|
109
|
-
| `pre_reasoning/pre_reasoning_v2_5.py` | v2.5
|
|
110
|
-
| `pre_reasoning/checkpoints/pre-reasoning-3m-v2.5.safetensors` | Bundled
|
|
107
|
+
| `pre_reasoning/inference.py` | 3M-parameter neural perception layer |
|
|
108
|
+
| `pre_reasoning/heuristic.py` | Graph-reasoning core |
|
|
109
|
+
| `pre_reasoning/pre_reasoning_v2_5.py` | v2.5 engine: neural perception + graph reasoning |
|
|
110
|
+
| `pre_reasoning/checkpoints/pre-reasoning-3m-v2.5.safetensors` | Bundled model weights (11MB) |
|
|
111
111
|
| `examples/` | Runnable usage examples |
|
|
112
112
|
| `tests/` | Pytest suite |
|
|
113
113
|
| `skill/SKILL.md` | Agent skill descriptor for model adoption |
|
|
114
|
-
| `CLAUDE.md` |
|
|
114
|
+
| `CLAUDE.md` | Claude Code adoption and grounding-hook guide |
|
|
115
115
|
| `WHY_TRACES_WORK.md` | Literature connection, 9 cited papers |
|
|
116
116
|
|
|
117
117
|
## Weights Policy
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "pre-reasoning"
|
|
7
|
-
version = "2.5.
|
|
7
|
+
version = "2.5.3"
|
|
8
8
|
description = "3M-parameter neural pre-reasoning engine for grounding LLMs before they answer."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|