modelmri 0.0.1a0__py3-none-any.whl

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.
modelmri/__init__.py ADDED
@@ -0,0 +1,14 @@
1
+ """ModelMRI — Chrome DevTools for AI models and agents.
2
+
3
+ This is a placeholder release reserving the package name.
4
+ v0.1 (live attention playground for local HuggingFace models)
5
+ is in active development, in public:
6
+
7
+ https://github.com/muhammadmahadazher/ModelMRI
8
+ """
9
+
10
+ __version__ = "0.0.1a0"
11
+
12
+
13
+ def main() -> None:
14
+ print(__doc__)
@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.4
2
+ Name: modelmri
3
+ Version: 0.0.1a0
4
+ Summary: Chrome DevTools for AI models and agents — see attention, features, and agent steps inside any local model. Placeholder release; v0.1 in active development.
5
+ Project-URL: Homepage, https://github.com/muhammadmahadazher/ModelMRI
6
+ Project-URL: Repository, https://github.com/muhammadmahadazher/ModelMRI
7
+ Author-email: Muhammad Mahad Azher <mahadazher@gmail.com>
8
+ License: MIT
9
+ License-File: LICENSE
10
+ Keywords: agents,debugging,devtools,interpretability,llm,sparse-autoencoder
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+
18
+ # ModelMRI
19
+
20
+ **Chrome DevTools for AI models and agents.** Load any local model — LLM, VLM, or robot policy — and see inside it while it runs: attention, features, circuits, agent steps. Local-first. MIT.
21
+
22
+ > 🚧 **Under active construction, in public.** v0.1 (live attention playground) ships in ~2 weeks.
23
+ > Follow the build: [Substack](https://modelmri.substack.com)
24
+
25
+ ## Why
26
+
27
+ When a model gives a wrong answer, you can't see why. When an agent fails at step 47, you get a wall of logs. When a robot policy drops the object, you get nothing. The research tools that *can* see inside (SAEs, attention analysis, circuit tracing) live in notebooks only specialists can drive.
28
+
29
+ ModelMRI packages that research into a tool with the ergonomics of browser DevTools: one-line install, open `localhost:5900`, look inside.
30
+
31
+ ## Planned (the 12-week public roadmap)
32
+
33
+ - **v0.1** — load a HuggingFace LLM, watch attention flow live at 60fps (WebGL)
34
+ - **v0.2** — SAE feature browser: see the *concepts* inside the model, steer them
35
+ - **v0.3** — agent mode: record any Anthropic-SDK/Claude-Code agent run, replay it, find the failing step
36
+ - **v0.4** — the first interactive tool for looking inside a robot policy (SmolVLA + LeRobot)
37
+ - **v0.5** — polish, zero-install hosted demo, launch
38
+
39
+ ## Status
40
+
41
+ | Piece | State |
42
+ |---|---|
43
+ | Backend (FastAPI, activation hooks) | 🏗️ in progress |
44
+ | Frontend (React + WebGL) | 🏗️ in progress |
45
+ | `pip install modelmri` | placeholder published |
46
+
47
+ MIT © Muhammad Mahad Azher
@@ -0,0 +1,6 @@
1
+ modelmri/__init__.py,sha256=oJemhRedwsgbsmvOsDNbiiIZoxBzboz0V3cqNdYCjvY,338
2
+ modelmri-0.0.1a0.dist-info/METADATA,sha256=v_iZAPFFpmyVYd9Z1blk5t4PglaRHFQSMxIQqlHzTAI,2306
3
+ modelmri-0.0.1a0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
4
+ modelmri-0.0.1a0.dist-info/entry_points.txt,sha256=beTtl_kOumFHq4YA13FWmfObrKQA0gxiCZtC2p54f6s,43
5
+ modelmri-0.0.1a0.dist-info/licenses/LICENSE,sha256=R0BIPnBblQtaoHYaxhBUU7bDZLeY0e8UooG-5ts2Cww,1098
6
+ modelmri-0.0.1a0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ modelmri = modelmri:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Muhammad Mahad Azher
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.