troy-cli 0.2.1__tar.gz → 0.2.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: troy-cli
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Fine-tune LLMs on your MacBook with one YAML file. Built for Apple Silicon.
5
5
  Author: Troy
6
6
  License: Apache-2.0
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "troy-cli"
3
- version = "0.2.1"
3
+ version = "0.2.2"
4
4
  description = "Fine-tune LLMs on your MacBook with one YAML file. Built for Apple Silicon."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -1,3 +1,3 @@
1
1
  """Troy: fine-tune LLMs on your MacBook with one YAML file."""
2
2
 
3
- __version__ = "0.2.1"
3
+ __version__ = "0.2.2"
@@ -120,7 +120,12 @@ def doctor() -> None:
120
120
  except ImportError:
121
121
  table.add_row("mlx-lm", f"{fail} (not installed)")
122
122
 
123
- table.add_row("Fine-tunable models", model_guidance(hw.memory_gb))
123
+ table.add_row("Comfortable size", model_guidance(hw.memory_gb))
124
+ table.add_row(
125
+ "Supported models",
126
+ "any mlx-lm architecture (Llama, Qwen, Gemma, Phi, Mistral, ...)\n"
127
+ "thousands of ready conversions: hf.co/mlx-community",
128
+ )
124
129
  console.print(table)
125
130
 
126
131
  if not hw.is_apple_silicon:
@@ -42,7 +42,8 @@ def detect() -> Hardware:
42
42
  )
43
43
 
44
44
 
45
- # (min unified memory GB, guidance) — QLoRA 4-bit fine-tuning headroom.
45
+ # (min unified memory GB, guidance) — QLoRA 4-bit sizing EXAMPLES, not a
46
+ # whitelist: any mlx-lm-supported architecture trains.
46
47
  MODEL_GUIDANCE = [
47
48
  (128, "up to ~70B (4-bit QLoRA), e.g. Llama-3.3-70B, Qwen2.5-72B"),
48
49
  (64, "up to ~32B (4-bit QLoRA), e.g. Qwen2.5-32B, Gemma-2-27B"),
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