mirror of
https://github.com/cloudstack-llc/mlx-knife.git
synced 2026-07-16 10:44:29 -04:00
57bf6d86be
Major Features Added: • Complete run command implementation with interactive/single-shot modes • MLXRunner core engine ported from 1.x with modular architecture • OpenAI-compatible server with SIGINT-robust supervisor mode • Experimental push feature properly isolated behind environment variable Key Improvements: - Full feature parity with 1.1.1 stable releases - Enhanced human output formatting across all commands - Clean separation of stable (184 tests) vs experimental features - Updated demo GIF showcasing improved 2.0 interface Fixes: - Pull operation cache pollution (Issue #30) with preflight access checks - Test stability improvements across all environments Architecture: - Modular runner design with focused helper modules - Thread-safe model loading and memory management - stable testing across Python 3.9-3.13 Ready for use as comprehensive 1.x alternative.
62 lines
1.5 KiB
TOML
62 lines
1.5 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mlxk-json"
|
|
dynamic = ["version"]
|
|
description = "MLX-Knife 2.0 - JSON-first model management for automation"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = {text = "Apache-2.0"}
|
|
authors = [
|
|
{name = "The BROKE team", email = "broke@gmx.eu"},
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Operating System :: MacOS",
|
|
"Environment :: Console",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
]
|
|
dependencies = [
|
|
"huggingface-hub>=0.34.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
mlxk-json = "mlxk2.cli:main"
|
|
mlxk2 = "mlxk2.cli:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/mzau/mlx-knife"
|
|
Repository = "https://github.com/mzau/mlx-knife"
|
|
Issues = "https://github.com/mzau/mlx-knife/issues"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["mlxk2*"]
|
|
exclude = ["tests*", "tests_2.0*"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "mlxk2.__version__"}
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=7",
|
|
"jsonschema>=4.20",
|
|
"httpx>=0.27.0",
|
|
"fastapi>=0.116.0",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
license-files = [
|
|
"LICENSE",
|
|
"mlxk2/NOTICE",
|
|
]
|