mlxsmith 0.1.0__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.
- mlxsmith/__init__.py +2 -0
- mlxsmith/accel/__init__.py +10 -0
- mlxsmith/accel/base.py +17 -0
- mlxsmith/accel/none.py +13 -0
- mlxsmith/accel/zmlx_backend.py +42 -0
- mlxsmith/adapters.py +46 -0
- mlxsmith/api/__init__.py +48 -0
- mlxsmith/api/handlers.py +1217 -0
- mlxsmith/api/schemas.py +436 -0
- mlxsmith/auth.py +88 -0
- mlxsmith/bench.py +102 -0
- mlxsmith/cli.py +950 -0
- mlxsmith/config.py +543 -0
- mlxsmith/config_models.py +261 -0
- mlxsmith/data.py +493 -0
- mlxsmith/envs/__init__.py +33 -0
- mlxsmith/envs/system.py +388 -0
- mlxsmith/envs/token_env.py +191 -0
- mlxsmith/eval.py +112 -0
- mlxsmith/infer.py +140 -0
- mlxsmith/llm/__init__.py +16 -0
- mlxsmith/llm/backend.py +126 -0
- mlxsmith/llm/interface.py +212 -0
- mlxsmith/llm/mlx_lm_backend.py +509 -0
- mlxsmith/llm/mock_backend.py +228 -0
- mlxsmith/llm/registry.py +12 -0
- mlxsmith/models.py +257 -0
- mlxsmith/orchestrator/__init__.py +25 -0
- mlxsmith/orchestrator/daemon.py +454 -0
- mlxsmith/orchestrator/inference_worker.py +496 -0
- mlxsmith/orchestrator/queue.py +355 -0
- mlxsmith/orchestrator/trainer_worker.py +437 -0
- mlxsmith/rlm/__init__.py +8 -0
- mlxsmith/rlm/corpus.py +74 -0
- mlxsmith/rlm/gating.py +90 -0
- mlxsmith/rlm/generate.py +249 -0
- mlxsmith/rlm/history.py +12 -0
- mlxsmith/rlm/inference.py +150 -0
- mlxsmith/rlm/loop.py +1297 -0
- mlxsmith/rlm/mutate.py +82 -0
- mlxsmith/rlm/trainer.py +73 -0
- mlxsmith/rlm/weights.py +263 -0
- mlxsmith/runs.py +44 -0
- mlxsmith/sdk/__init__.py +392 -0
- mlxsmith/sdk/future.py +486 -0
- mlxsmith/sdk/losses.py +262 -0
- mlxsmith/sdk/sampling_client.py +729 -0
- mlxsmith/sdk/training_client.py +676 -0
- mlxsmith/server.py +376 -0
- mlxsmith/train/__init__.py +0 -0
- mlxsmith/train/distill.py +279 -0
- mlxsmith/train/lora.py +280 -0
- mlxsmith/train/pref.py +180 -0
- mlxsmith/train/rft.py +458 -0
- mlxsmith/train/sft.py +151 -0
- mlxsmith/util.py +174 -0
- mlxsmith/verifiers/__init__.py +3 -0
- mlxsmith/verifiers/compose.py +109 -0
- mlxsmith/verifiers/docker_verifier.py +111 -0
- mlxsmith/verifiers/jsonschema.py +54 -0
- mlxsmith/verifiers/pytest_verifier.py +82 -0
- mlxsmith/verifiers/regex.py +15 -0
- mlxsmith/verifiers/types.py +10 -0
- mlxsmith-0.1.0.dist-info/METADATA +163 -0
- mlxsmith-0.1.0.dist-info/RECORD +69 -0
- mlxsmith-0.1.0.dist-info/WHEEL +5 -0
- mlxsmith-0.1.0.dist-info/entry_points.txt +2 -0
- mlxsmith-0.1.0.dist-info/licenses/LICENSE +21 -0
- mlxsmith-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mlxsmith
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Apple Silicon MLX fine-tuning and OpenAI-compatible serving (SFT stable; preference/RL experimental).
|
|
5
|
+
Author-email: Shannon Labs <hmbown@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/Hmbown/MLXSmith
|
|
8
|
+
Project-URL: Repository, https://github.com/Hmbown/MLXSmith
|
|
9
|
+
Project-URL: Issues, https://github.com/Hmbown/MLXSmith/issues
|
|
10
|
+
Keywords: mlx,apple-silicon,llm,fine-tuning,lora,openai-compatible
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: LICENSE
|
|
25
|
+
Requires-Dist: typer>=0.9.0
|
|
26
|
+
Requires-Dist: rich>=13.7.0
|
|
27
|
+
Requires-Dist: pyyaml>=6.0.1
|
|
28
|
+
Requires-Dist: pydantic>=2.5.0
|
|
29
|
+
Requires-Dist: pydantic-settings>=2.2.1
|
|
30
|
+
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
|
|
31
|
+
Requires-Dist: huggingface_hub>=1.3.4
|
|
32
|
+
Requires-Dist: jsonschema>=4.21.0
|
|
33
|
+
Provides-Extra: mlx
|
|
34
|
+
Requires-Dist: mlx>=0.30.4; extra == "mlx"
|
|
35
|
+
Provides-Extra: llm
|
|
36
|
+
Requires-Dist: mlx-lm>=0.30.5; extra == "llm"
|
|
37
|
+
Requires-Dist: transformers>=5.0.0; extra == "llm"
|
|
38
|
+
Requires-Dist: datasets>=3.0.0; extra == "llm"
|
|
39
|
+
Provides-Extra: serve
|
|
40
|
+
Requires-Dist: fastapi>=0.128.0; extra == "serve"
|
|
41
|
+
Requires-Dist: uvicorn>=0.40.0; extra == "serve"
|
|
42
|
+
Requires-Dist: httpx>=0.28.0; extra == "serve"
|
|
43
|
+
Provides-Extra: zmlx
|
|
44
|
+
Requires-Dist: zmlx; extra == "zmlx"
|
|
45
|
+
Provides-Extra: dev
|
|
46
|
+
Requires-Dist: pytest>=9.0.0; extra == "dev"
|
|
47
|
+
Requires-Dist: ruff>=0.14.0; extra == "dev"
|
|
48
|
+
Provides-Extra: all
|
|
49
|
+
Requires-Dist: mlx>=0.30.4; extra == "all"
|
|
50
|
+
Requires-Dist: mlx-lm>=0.30.5; extra == "all"
|
|
51
|
+
Requires-Dist: transformers>=5.0.0; extra == "all"
|
|
52
|
+
Requires-Dist: datasets>=3.0.0; extra == "all"
|
|
53
|
+
Requires-Dist: fastapi>=0.128.0; extra == "all"
|
|
54
|
+
Requires-Dist: uvicorn>=0.40.0; extra == "all"
|
|
55
|
+
Requires-Dist: httpx>=0.28.0; extra == "all"
|
|
56
|
+
Dynamic: license-file
|
|
57
|
+
|
|
58
|
+
# mlxsmith
|
|
59
|
+
|
|
60
|
+
Apple Silicon MLX fine-tuning and OpenAI-compatible serving.
|
|
61
|
+
SFT + serving are stable. Preference/RL/RLM features are experimental.
|
|
62
|
+
|
|
63
|
+
Status: alpha (2026-02-02).
|
|
64
|
+
|
|
65
|
+
## Stable features
|
|
66
|
+
- Project init, config, data tools, HF auth, model pull/convert.
|
|
67
|
+
- SFT (LoRA/QLoRA) training with run tracking and adapters.
|
|
68
|
+
- Inference and OpenAI-compatible /v1/chat/completions serving.
|
|
69
|
+
- Basic eval/bench and verifier plumbing (regex/jsonschema/pytest).
|
|
70
|
+
|
|
71
|
+
## Experimental features
|
|
72
|
+
- Preference tuning (DPO/ORPO).
|
|
73
|
+
- GRPO-style RFT.
|
|
74
|
+
- RLM self-play loop (research).
|
|
75
|
+
- Distill/OPD and orchestrated RLM.
|
|
76
|
+
|
|
77
|
+
## Install
|
|
78
|
+
|
|
79
|
+
MLX is only available on Apple Silicon. Other platforms can still use data tools
|
|
80
|
+
and mock backends, but MLX training and serving require macOS on Apple Silicon.
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
python -m venv .venv && source .venv/bin/activate
|
|
84
|
+
pip install -U pip
|
|
85
|
+
|
|
86
|
+
# Core CLI
|
|
87
|
+
pip install mlxsmith
|
|
88
|
+
|
|
89
|
+
# Apple Silicon training + serving
|
|
90
|
+
pip install "mlxsmith[mlx,llm,serve]"
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## Quickstart
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
mlxsmith init myproj
|
|
97
|
+
cd myproj
|
|
98
|
+
mlxsmith doctor
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
## HF auth (optional)
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
mlxsmith auth login --token "$HF_TOKEN"
|
|
105
|
+
mlxsmith auth status
|
|
106
|
+
mlxsmith auth logout
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
## Pull + convert a model (HF -> MLX)
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
mlxsmith pull Qwen/Qwen3-4B-Instruct-2507
|
|
113
|
+
# outputs to cache/mlx/Qwen__Qwen3-4B-Instruct-2507
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
Optional quantization:
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
mlxsmith pull Qwen/Qwen3-4B-Instruct-2507 --quantize --q-bits 4
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
## SFT (LoRA/QLoRA)
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
mlxsmith sft --model cache/mlx/Qwen__Qwen3-4B-Instruct-2507 --data data/sft
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
## Serve (OpenAI-compatible)
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
mlxsmith serve --model runs/sft_0001/adapter --port 8080
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
Sample request:
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
curl http://localhost:8080/v1/chat/completions \
|
|
138
|
+
-H 'Content-Type: application/json' \
|
|
139
|
+
-d '{"messages":[{"role":"user","content":"Hello"}],"max_tokens":64}'
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
To enable the optional UI/monitor dashboard, set `serve.ui: true` in `mlxsmith.yaml`.
|
|
143
|
+
|
|
144
|
+
## Experimental commands
|
|
145
|
+
|
|
146
|
+
- `mlxsmith pref` (DPO/ORPO)
|
|
147
|
+
- `mlxsmith rft` (GRPO-style)
|
|
148
|
+
- `mlxsmith rlm` / `mlxsmith pipeline` (self-play loop)
|
|
149
|
+
- `mlxsmith distill` (offline/OPD)
|
|
150
|
+
- `mlxsmith eval` / `mlxsmith bench`
|
|
151
|
+
|
|
152
|
+
## Docs
|
|
153
|
+
|
|
154
|
+
- `docs/PROJECT_FORMAT.md` for project layout and artifacts.
|
|
155
|
+
- `docs/VERIFIERS.md` for verifier API and sandbox behavior.
|
|
156
|
+
- `docs/COMPATIBILITY.md` for tested versions and model families.
|
|
157
|
+
- `docs/ENVIRONMENTS.md` for the environment plugin system.
|
|
158
|
+
- `docs/ROADMAP.md` for product direction and milestones.
|
|
159
|
+
- `docs/README.md` for the full docs index.
|
|
160
|
+
|
|
161
|
+
## License
|
|
162
|
+
|
|
163
|
+
MIT
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
mlxsmith/__init__.py,sha256=CJZKl9Hp16DYlQR7yqstir-cL4n7GCw90d-meXliCHk,48
|
|
2
|
+
mlxsmith/adapters.py,sha256=wkQ2q_ugaxCviNARSmxehwBcc2_NKVJ7mOofT-y30TY,1318
|
|
3
|
+
mlxsmith/auth.py,sha256=_j_gx5ccZfpHs0_Xmpcgh_ELhX3ZBJLg2YYpjA-aPRI,2195
|
|
4
|
+
mlxsmith/bench.py,sha256=VBgY9uOGm3xhmL3UrNNOnUoa3P0yaVQQ7wxykIEmDEw,3778
|
|
5
|
+
mlxsmith/cli.py,sha256=YHjrPti1OCe0m2gpEwygiJ6_x-xeycKHRDYCksdcOuM,35750
|
|
6
|
+
mlxsmith/config.py,sha256=iFDhO7KcAtq1KySGD7TfNMYqbQcec0Tc0-VJdr5Gwo4,16385
|
|
7
|
+
mlxsmith/config_models.py,sha256=pMsLGyC9J9T9jqs5ipYFUuEkfir7iiDA4EZdcb65k5g,8407
|
|
8
|
+
mlxsmith/data.py,sha256=3ZlNS8bnD7LlWACEmULbf8RGQzCuf0QulFpI1PWvNuI,16160
|
|
9
|
+
mlxsmith/eval.py,sha256=nSARSEKKwZM8Ot5rUDDpGikaClGNxvg0ifgGkTA6mM0,3792
|
|
10
|
+
mlxsmith/infer.py,sha256=ekpHhTird0dnTJzFOc-O98rjwkEKgAr9AFicKlaB3MA,4610
|
|
11
|
+
mlxsmith/models.py,sha256=BRaPTxzqy-5KEKdccveMgjpbRP0ZmbRnA_su8rz2P4k,8033
|
|
12
|
+
mlxsmith/runs.py,sha256=2voYBryGGMlAKskHJ7TDiIPQL2_fFxSQ8RgtfGZ7ccg,1409
|
|
13
|
+
mlxsmith/server.py,sha256=CBxmV9WwpyivsHytVALgT4DOGh1vqjwm4W_iHBH79rg,10821
|
|
14
|
+
mlxsmith/util.py,sha256=8fagFtMP2YS1qlWkCt8bPWAz2jAgfvAf1ipNGJZAgIk,4544
|
|
15
|
+
mlxsmith/accel/__init__.py,sha256=Mv2mj-2bLqUILhMUCjMLu7JORcu0-cGBOri32j7O5Xo,291
|
|
16
|
+
mlxsmith/accel/base.py,sha256=o0kmxV68KbxOmucC3eDjKbFA8dfTT2ETqN0XD_l3mM0,435
|
|
17
|
+
mlxsmith/accel/none.py,sha256=WhxECIBv-pE63Vh1Iv86ObgT9JHOi4hA4BUyJc__sKU,362
|
|
18
|
+
mlxsmith/accel/zmlx_backend.py,sha256=JfzQ44v9hrCJgcqU018ZD7qLNlubIe09CwYRpKyfwR8,1529
|
|
19
|
+
mlxsmith/api/__init__.py,sha256=IrpIXDkUJm4BZqahYOK_0BkxvomlscEvCoLCm4GDxo8,998
|
|
20
|
+
mlxsmith/api/handlers.py,sha256=5YKQfHLG2mWjCugOkG1L3veiPMz_Qg_s4h12xx6eibs,47068
|
|
21
|
+
mlxsmith/api/schemas.py,sha256=Q18kF9FKtvT1vdnXy6feSNTtCV2FiRWDzfdsPzc0te8,19316
|
|
22
|
+
mlxsmith/envs/__init__.py,sha256=t7QiEHtfyP1dUCj-4TJUN0hd9lRqBKYd5Ek7dgEwus4,671
|
|
23
|
+
mlxsmith/envs/system.py,sha256=2bChkOxm2S7d0WCrweHGhoI6-xOYDxlC0YbHH6Ibjq4,12782
|
|
24
|
+
mlxsmith/envs/token_env.py,sha256=rhv2o3eI1GyTtfAXG72z-31amNGaLv0KW56mEsWkXlY,6709
|
|
25
|
+
mlxsmith/llm/__init__.py,sha256=jWEkXGdvwZ8tUYHVqWW3SYHXG-LSWaGbdwOR0mF_4Zw,396
|
|
26
|
+
mlxsmith/llm/backend.py,sha256=_xGfdJ30_6Nq8zIqMjTemCZWV-vUi9qV0djfwxny5SM,4335
|
|
27
|
+
mlxsmith/llm/interface.py,sha256=zmqJuyiEQqjEpDjZwooS1hp1GfTPCTiWYJ5nPw8xSqg,6633
|
|
28
|
+
mlxsmith/llm/mlx_lm_backend.py,sha256=OitqY_6LqnfqbN7GZz39Ma3cItjjNqHXF3SV3AZsHxk,18284
|
|
29
|
+
mlxsmith/llm/mock_backend.py,sha256=DXXnMlXZGCtf0datgjFc5z_X8JMEKaYDRPXKU1erGdQ,7449
|
|
30
|
+
mlxsmith/llm/registry.py,sha256=ZmYE-WclyMo6z0HwUufqt3tKT4E84xZ6I-PFu1Z5nws,309
|
|
31
|
+
mlxsmith/orchestrator/__init__.py,sha256=oc4qIkISZMGMvYeOqU8lDDmFL3uxDYJHsv_rra9DH-E,792
|
|
32
|
+
mlxsmith/orchestrator/daemon.py,sha256=MRQf84sCjeShBFcOcF7yfP6HhHl7IHrnmw0nV50mJrI,16360
|
|
33
|
+
mlxsmith/orchestrator/inference_worker.py,sha256=4AI_j7qnrnwXObBxSa7YHlZHnGfqou-W1fpqHYt8jpQ,17981
|
|
34
|
+
mlxsmith/orchestrator/queue.py,sha256=8c1n-fiW3ITcLbwOeFlH_AEZdJYvZumy8EczJ0lh4NA,11301
|
|
35
|
+
mlxsmith/orchestrator/trainer_worker.py,sha256=uvJQesXjfdsiNRsO2FVHhUk0WmMB_PQNSPff5U9Swp4,16061
|
|
36
|
+
mlxsmith/rlm/__init__.py,sha256=Q09oRONXWTFXuWwMJOpGWg0I-UDkuib0OA1O_cNFp2U,236
|
|
37
|
+
mlxsmith/rlm/corpus.py,sha256=-p12H650_ybe2kXC219M4wXYpD08QHUpY92ErVjSfX8,2112
|
|
38
|
+
mlxsmith/rlm/gating.py,sha256=L18niYKEezphASdsgzW6pz3PN7ylA-L5Wu4_GLLVfHw,2455
|
|
39
|
+
mlxsmith/rlm/generate.py,sha256=q1v_TP8sqVj05omhoF60Ns1iX6yClgc7lP6njz4lK18,7601
|
|
40
|
+
mlxsmith/rlm/history.py,sha256=Vm4JtWqsZnqB-fuo3zWfweeogmmLTL3VHaYZ45vrkz8,299
|
|
41
|
+
mlxsmith/rlm/inference.py,sha256=ntCEKxD1KrkIXgZNQbD4jhS5rJPtwcVYc8qLc5E5cnc,5297
|
|
42
|
+
mlxsmith/rlm/loop.py,sha256=WLRP1PI5PX7OjSEZsurrCwSTVVPNVIx4-7td1ihSMY0,49955
|
|
43
|
+
mlxsmith/rlm/mutate.py,sha256=_NUNMpVCRaEDgtzI8J2NOTcj5NnycZnP_UoUpFacjTs,2553
|
|
44
|
+
mlxsmith/rlm/trainer.py,sha256=RRXPlJy4SySpLZGge0ORMYs7HeiWgfGQNeMBOBfG4Ys,3014
|
|
45
|
+
mlxsmith/rlm/weights.py,sha256=NO7wjl2T0eXTVFoYrzPT_IUmaLvD2z-zSSyKpcX93kY,8463
|
|
46
|
+
mlxsmith/sdk/__init__.py,sha256=42WpTgC309sYKp8SArULBWz0trVN51THcjvPdVh-thc,10777
|
|
47
|
+
mlxsmith/sdk/future.py,sha256=mleqPgJ997hSuZuQegvS2GoOxqo_gd4pfh37gv70APc,16873
|
|
48
|
+
mlxsmith/sdk/losses.py,sha256=lJi3R7Red_QO3IatbhKi_GBI7kM0yu-kS14xN2kX_04,7532
|
|
49
|
+
mlxsmith/sdk/sampling_client.py,sha256=AkjJHEZ8OLU8SZoALk7ds3NHMquiqk9GGZHqni5vB2g,24942
|
|
50
|
+
mlxsmith/sdk/training_client.py,sha256=4GXcswTJypkymPO3E5DREUesGzlumbmUrTnt0T80wEI,24380
|
|
51
|
+
mlxsmith/train/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
+
mlxsmith/train/distill.py,sha256=9Xbzn6zt8uqYOwg_pJB2rZJj8y-nESP1OB8DLxnJ0jM,10378
|
|
53
|
+
mlxsmith/train/lora.py,sha256=E8ymi1wUVsGp5-0DldvkSWDHNh_5Fhr6AelJOR5YoPw,8859
|
|
54
|
+
mlxsmith/train/pref.py,sha256=-z7mj-MQu6dPb8y0U6sRFbqKU0nNQ3YRpC3CcmS3l5k,6987
|
|
55
|
+
mlxsmith/train/rft.py,sha256=bf6z-h6VQKvMDZ0XN_ayZV44YsIvuwSzP1YRYrwSQ2M,18956
|
|
56
|
+
mlxsmith/train/sft.py,sha256=w3QmLLoscNQzz-xbtmrCw46PbYIApvgeQi0XjxCop90,5590
|
|
57
|
+
mlxsmith/verifiers/__init__.py,sha256=HXS9XWsPUYZ9WJaxVIPa1TWzwx948uymj23YIu4EW6Q,60
|
|
58
|
+
mlxsmith/verifiers/compose.py,sha256=jQlsBByNvniEsOVh8Ulvjb7L-VcPrxqjld5b1sjBc8c,3374
|
|
59
|
+
mlxsmith/verifiers/docker_verifier.py,sha256=BIqu2VVLsC8owNpiNbOZNmTirfpvuWNJS4F6UZYni1s,2925
|
|
60
|
+
mlxsmith/verifiers/jsonschema.py,sha256=hG_8c07Hwv-tpN2g0oxELwmLRxS8QGzRFwabmo4yY8Y,1324
|
|
61
|
+
mlxsmith/verifiers/pytest_verifier.py,sha256=ARNajzxUPNwtzSow6I2d0mLopZyvY29_d3F1sYVwEUY,2514
|
|
62
|
+
mlxsmith/verifiers/regex.py,sha256=N7z3koE8Iy-a4DBs4404iQCNX2WGxequm5g4umric2Y,524
|
|
63
|
+
mlxsmith/verifiers/types.py,sha256=FytBxB1OnNX1EcqZXSSs3WvL0GRv7byW4mfBMf6xP68,240
|
|
64
|
+
mlxsmith-0.1.0.dist-info/licenses/LICENSE,sha256=ESYyLizI0WWtxMeS7rGVcX3ivMezm-HOd5WdeOh-9oU,1056
|
|
65
|
+
mlxsmith-0.1.0.dist-info/METADATA,sha256=yRnNRKdCFPZQRgAN7qtxCDBrUJxplOqK3mTV_Uoh2jA,4812
|
|
66
|
+
mlxsmith-0.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
67
|
+
mlxsmith-0.1.0.dist-info/entry_points.txt,sha256=ys7GcKEjhzhkkTMBmmaNavTgsjqOuFnCKIG2w8Wcn6w,46
|
|
68
|
+
mlxsmith-0.1.0.dist-info/top_level.txt,sha256=hKBwc8bn7uoI-_5Yhcq1T3IuChFhUFdzItIkZK1up6A,9
|
|
69
|
+
mlxsmith-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026
|
|
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.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mlxsmith
|