Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

ModelFit

БесплатноНе проверен

Hardware-Aware Hugging Face Discovery, Memory Fitting, Empirical Benchmarking & Swappable Local Model Gateway for AI Agents

GitHubEmbed

Описание

Hardware-Aware Hugging Face Discovery, Memory Fitting, Empirical Benchmarking & Swappable Local Model Gateway for AI Agents

README

CI Python 3.10+ License: MIT MCP Compliant

Hardware-Aware Hugging Face Discovery, Memory Fitting, Empirical Benchmarking & Swappable Local Model Gateway for AI Agents.

ModelFit-MCP connects AI agents (Claude Desktop, Cursor, custom autonomous agents) to Hugging Face with built-in hardware awareness. It profiles host specs (CPU, RAM, GPU, VRAM), calculates exact model memory footprints, filters out models that would trigger CUDA Out of Memory (OOM) errors, and spins up a swappable local gateway so models can be changed dynamically without modifying application code.


Key Features

  • Zero OOM Crashes: Automatically evaluates parameter count, precision (fp32, fp16, int8, int4), and 25% activation headroom before suggesting or loading models.
  • Empirical Accuracy & Latency Benchmarking: Automatically runs test evaluations across candidate models that satisfy hardware specs to rank them by real-world inference speed and confidence.
  • High-Speed Ensembles: Discovers ultra-lightweight models that consume $\le 35%$ of hardware headroom and aggregates them via weighted_average, majority_vote, or top_confidence strategies.
  • Swappable Architecture: Your client code interacts with an abstract gateway (gateway.predict() or POST /predict). Models can be upgraded or hot-swapped without touching your application code.
  • Memory Purging: Unloads old weights and triggers torch.cuda.empty_cache() on every swap to prevent VRAM memory leaks.
  • Multi-Modal: Normalizes outputs across image-classification, object-detection, text-generation, and zero-shot-image-classification.
  • Cross-Language Ready: First-class support for Python, Flutter/Dart, Node.js, and cURL.

System Architecture

flowchart TD
    User["Your App / AI Agent\n(Plant App, Flutter, Web, CLI)"] -->|predict / ensemble| Gateway["Local Model Gateway\n(In-Process or http://127.0.0.1:7860)"]
    
    subgraph Engine["ModelFit-MCP Engine"]
        Gateway --> ActiveModel["Active Model(s)\n(MobileNet / ViT / ResNet)"]
        MCP["MCP Server / CLI\n(modelfit)"] -.->|Hot Swap + Memory Purge| ActiveModel
        Profiler["hardware.py\n(VRAM & RAM Profiler)"] --> HFFilter["hf_client.py\n(Sizing & Ranking)"]
        HFFilter --> Evaluator["evaluator.py\n(Benchmarking & Latency)"]
        HFFilter --> Ensemble["ensemble.py\n(Multi-Model Aggregator)"]
        Evaluator --> MCP
        Ensemble --> MCP
    end

Quickstart

1. Installation

git clone https://github.com/DumboDhruvi/ModelFit-MCP.git
cd ModelFit-MCP
pip install -e .

2. CLI Usage

Inspect your hardware headroom:

modelfit specs

Search Hugging Face models guaranteed to fit your machine:

modelfit search "plant disease" --task image-classification

Benchmark multiple candidate models on your hardware:

modelfit benchmark "nateraw/food,google/vit-base-patch16-224" --samples "sample1.jpg,sample2.jpg"

Run ensemble inference across lightweight models:

modelfit ensemble "model-a,model-b" --input "sample.jpg" --strategy weighted_average

Start the local micro-API daemon:

modelfit serve --port 7860

Hot-swap models on the fly:

modelfit swap "google/vit-base-patch16-224" --task image-classification

MCP Server Tools (Claude Desktop & Cursor)

Add ModelFit to your claude_desktop_config.json:

{
  "mcpServers": {
    "modelfit": {
      "command": "modelfit-server"
    }
  }
}

Available MCP Tools:

Tool Description
get_hardware_specs Detect host CPU, RAM, and GPU/VRAM headroom.
search_compatible_models Search Hugging Face models strictly filtered by hardware fit.
recommend_and_scaffold 1-shot model search, hardware check, and code scaffolding.
benchmark_models Run live accuracy and latency benchmarking on candidate models.
find_ensemble_models Find ultra-fast models suitable for low-latency ensembling.
ensemble_predict Execute ensemble prediction combining multiple models.
swap_active_model Hot-swap the active model with VRAM-safe memory purging.
get_active_model_status Inspect currently loaded model and target device.
get_integration_code Get drop-in Python inference code.

Integration Modes

Mode A: In-Process Python Adapter (Zero Latency)

from modelfit.adapter import gateway

# 1. Load initial model
gateway.load_model("linkanjarad/mobilenet_v2_1.0_224-plant-disease-identification")

# 2. Abstract prediction
results = gateway.predict("leaf.jpg")
print(results[0].label, results[0].score)

# 3. Hot-swap later with ZERO code changes below
gateway.load_model("google/vit-base-patch16-224")
results = gateway.predict("leaf.jpg")

Mode B: High-Speed Ensemble Inference

from modelfit.ensemble import EnsembleGateway

ensemble = EnsembleGateway()
candidates = ensemble.find_ensemble_candidates("plant disease", max_models=3)
model_ids = [m["model_id"] for m in candidates]

predictions = ensemble.predict_ensemble(
    input_data="leaf.jpg",
    model_ids=model_ids,
    strategy="weighted_average"
)

for p in predictions:
    print(f"{p.label}: {p.score:.2f} (votes: {p.votes})")

Mode C: Local Micro-API (Flutter, Node.js, Web, cURL)

Start the background daemon:

modelfit serve --port 7860

Query or swap over HTTP:

# Predict
curl -X POST http://127.0.0.1:7860/predict \
  -H "Content-Type: application/json" \
  -d '{"input": "leaf_sample.jpg"}'

# Hot-Swap
curl -X POST http://127.0.0.1:7860/swap \
  -H "Content-Type: application/json" \
  -d '{"model_id": "google/vit-base-patch16-224", "task": "image-classification"}'

See examples/flutter_integration_example.dart for a complete Flutter service.


Testing

Run the full test suite:

python3 -m unittest discover tests -v

All tests complete in under 2 seconds.


License

MIT License. See LICENSE for details.

from github.com/DumboDhruvi/ModelFit-MCP

Установить ModelFit в Claude Desktop, Claude Code, Cursor

Рекомендуется · одна команда, все IDE
unyly install modelfit

Ставит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.

Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh

Или настроить вручную

Выполни в терминале:

claude mcp add modelfit -- uvx modelfit-mcp

Пошаговые гайды: как установить ModelFit

FAQ

ModelFit MCP бесплатный?

Да, ModelFit MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для ModelFit?

Нет, ModelFit работает без API-ключей и переменных окружения.

ModelFit — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить ModelFit в Claude Desktop, Claude Code или Cursor?

Открой ModelFit на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Fetch

Web content fetching and conversion for efficient LLM usage.

автор: Community

Roblox Studio

Enables AI coding tools to control Roblox Studio for workspace exploration, instance manipulation, and script management. It provides tools for playtesting, sce

paralovавтор: paralov

Opencode Omniroute Plugin

OpenCode plugin for the OmniRoute AI Gateway. Drives dynamic model discovery, /connect auth flow, and multi-instance OmniRoute providers via the official @openc

GitHub Actionsавтор: GitHub Actions

AWS KB Retrieval

Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.

modelcontextprotocolавтор: modelcontextprotocol

Spring AI MCP Server

Provides auto-configuration for setting up an MCP server in Spring Boot applications.

автор: Community

llm-analysis-assistant

A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also

xuzexin-hzавтор: xuzexin-hz

MCP-Agent

A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)

lastmile-aiавтор: lastmile-ai

Spring AI MCP Client

Provides auto-configuration for MCP client functionality in Spring Boot applications.

автор: Community

mcp.natoma.ai

A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)

автор: Community

MCPHub

Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.

автор: Community

Compare ModelFit with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории ai