mlx-code 0.0.23__tar.gz → 0.0.25__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.
- {mlx_code-0.0.23 → mlx_code-0.0.25}/PKG-INFO +6 -1
- {mlx_code-0.0.23 → mlx_code-0.0.25}/README.md +5 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/repl.py +1 -1
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code.egg-info/PKG-INFO +6 -1
- {mlx_code-0.0.23 → mlx_code-0.0.25}/setup.py +1 -1
- {mlx_code-0.0.23 → mlx_code-0.0.25}/LICENSE +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/__init__.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/apis.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/gits.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/lsp_tool.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/main.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/mcb.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/mcb_tool.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/ntui.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/stream_log.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/tools.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/util.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/view_git.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code/view_log.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code.egg-info/SOURCES.txt +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code.egg-info/dependency_links.txt +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code.egg-info/entry_points.txt +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code.egg-info/requires.txt +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/mlx_code.egg-info/top_level.txt +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/setup.cfg +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/tests/__init__.py +0 -0
- {mlx_code-0.0.23 → mlx_code-0.0.25}/tests/test.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mlx-code
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.25
|
|
4
4
|
Summary: Coding Agent for Mac
|
|
5
5
|
Home-page: https://josefalbers.github.io/mlx-code/
|
|
6
6
|
Author: J Joe
|
|
@@ -98,7 +98,12 @@ result = await agent.run('refactor utils.py to use dataclasses')
|
|
|
98
98
|
## Quick start
|
|
99
99
|
|
|
100
100
|
```bash
|
|
101
|
+
# ephemeral run (no installation)
|
|
102
|
+
uvx --from mlx-code mlc
|
|
103
|
+
|
|
104
|
+
# or install into the current environment
|
|
101
105
|
pip install mlx-code
|
|
106
|
+
|
|
102
107
|
mlc # launch with local MLX model
|
|
103
108
|
mlc-run --api gemini # or use a remote provider
|
|
104
109
|
mlc-run --api deepseek --model deepseek-v4-flash
|
|
@@ -62,7 +62,12 @@ result = await agent.run('refactor utils.py to use dataclasses')
|
|
|
62
62
|
## Quick start
|
|
63
63
|
|
|
64
64
|
```bash
|
|
65
|
+
# ephemeral run (no installation)
|
|
66
|
+
uvx --from mlx-code mlc
|
|
67
|
+
|
|
68
|
+
# or install into the current environment
|
|
65
69
|
pip install mlx-code
|
|
70
|
+
|
|
66
71
|
mlc # launch with local MLX model
|
|
67
72
|
mlc-run --api gemini # or use a remote provider
|
|
68
73
|
mlc-run --api deepseek --model deepseek-v4-flash
|
|
@@ -789,7 +789,7 @@ class ReplApp(App[None]):
|
|
|
789
789
|
else:
|
|
790
790
|
self.query_one('#helpbar', HelpBar).show_error('Nothing is running.')
|
|
791
791
|
elif cmd == '/branch':
|
|
792
|
-
as_worktree =
|
|
792
|
+
as_worktree = True
|
|
793
793
|
rev_n: int | None = None
|
|
794
794
|
prompt = arg
|
|
795
795
|
if '--no-worktree' in prompt:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mlx-code
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.25
|
|
4
4
|
Summary: Coding Agent for Mac
|
|
5
5
|
Home-page: https://josefalbers.github.io/mlx-code/
|
|
6
6
|
Author: J Joe
|
|
@@ -98,7 +98,12 @@ result = await agent.run('refactor utils.py to use dataclasses')
|
|
|
98
98
|
## Quick start
|
|
99
99
|
|
|
100
100
|
```bash
|
|
101
|
+
# ephemeral run (no installation)
|
|
102
|
+
uvx --from mlx-code mlc
|
|
103
|
+
|
|
104
|
+
# or install into the current environment
|
|
101
105
|
pip install mlx-code
|
|
106
|
+
|
|
102
107
|
mlc # launch with local MLX model
|
|
103
108
|
mlc-run --api gemini # or use a remote provider
|
|
104
109
|
mlc-run --api deepseek --model deepseek-v4-flash
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|