Local Model Registry & Scanner
FineTuneMyAI automatically discovers on-device LLMs installed across your machine without transmitting full filesystem paths to the cloud control plane.
Supported Discovery Sources
1. Ollama Daemon
Inspects ~/.ollama/models or connects to the local Ollama daemon at 127.0.0.1:11434.
2. Hugging Face Hub
Scans standard snapshot trees in ~/.cache/huggingface/hub for safetensors weights.
3. Apple MLX & Local Caches
Discovers Apple Silicon MLX models in ~/.cache/mlx and user model directories without touching server storage.
Scanning & Inspecting via Native Agent CLI
End users can discover, list, and inspect resident models directly through the native standalone agent CLI without needing Git, npm, or repo source code:
$ finetunemyai models scan
$ finetunemyai models list
$ finetunemyai models inspect qwen2.5-coder:7b-instruct
• qwen2.5-coder:7b-instruct (7B parameters • 4-bit Ollama GGUF • VALID)
• Qwen2.5-0.5B-Instruct-4bit (0.5B parameters • 4-bit Apple MLX • VALID)
Opaque Model Identifiers
The local agent computes a deterministic SHA-256 hash from the base model's canonical name, creating an opaque identifier like model_qwen25_7b. The central database stores only this opaque string and model metadata (parameter count, architecture family, quantization format). Your physical path remains local to your device.