Metadata-Version: 2.4
Name: hf-model-tool
Version: 0.2.5
Summary: A CLI tool to manage Hugging Face models.
Author-email: Zexi Chen <zzxxi.chen@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/Chen-zexi/hf-model-tool
Project-URL: Bug Tracker, https://github.com/Chen-zexi/hf-model-tool/issues
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: System :: Archiving
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich
Requires-Dist: inquirer
Requires-Dist: html2text
Requires-Dist: importlib-metadata>=1.0; python_version < "3.8"
Provides-Extra: test
Requires-Dist: pytest>=7.0.0; extra == "test"
Provides-Extra: test-cov
Requires-Dist: pytest>=7.0.0; extra == "test-cov"
Requires-Dist: pytest-cov>=4.0.0; extra == "test-cov"
Requires-Dist: pytest-mock>=3.10.0; extra == "test-cov"
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: flake8>=6.0.0; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"
Provides-Extra: dev-full
Requires-Dist: pytest>=7.0.0; extra == "dev-full"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev-full"
Requires-Dist: pytest-mock>=3.10.0; extra == "dev-full"
Requires-Dist: black>=23.0.0; extra == "dev-full"
Requires-Dist: flake8>=6.0.0; extra == "dev-full"
Requires-Dist: mypy>=1.0.0; extra == "dev-full"
Dynamic: license-file


# HF-MODEL-TOOL

[![CI/CD Pipeline](https://github.com/Chen-zexi/hf-model-tool/actions/workflows/ci.yml/badge.svg)](https://github.com/Chen-zexi/hf-model-tool/actions/workflows/ci.yml)
[![PyPI version](https://badge.fury.io/py/hf-model-tool.svg)](https://badge.fury.io/py/hf-model-tool)
[![Python versions](https://img.shields.io/pypi/pyversions/hf-model-tool.svg)](https://pypi.org/project/hf-model-tool/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

A CLI tool for managing your locally downloaded Huggingface models and datasets

> **Disclaimer:** This tool is not affiliated with or endorsed by Hugging Face. It is an independent, community-developed utility.

## Screenshots

### Welcome Screen
![Welcome Screen](images/welcome-screen.png)

### List All Assets
![List Assets](images/list-asset.png)

## Features

### Core Functionality
*   **Smart Asset Detection:** Detect HuggingFace models, datasets, LoRA adapters, fine-tuned models, Ollama models, and custom formats
*   **Asset Listing:** View all your AI assets with size information and metadata
*   **Duplicate Detection:** Find and clean duplicate downloads to save disk space
*   **Asset Details:** View model configurations and dataset documentation with rich formatting
*   **Directory Management:** Add and manage custom directories containing your AI assets
*   **Manifest System:** Customize model names, publishers, and metadata with JSON manifests

### Supported Asset Types

- **HuggingFace Models & Datasets:** Standard cached downloads from Hugging Face Hub
- **LoRA Adapters:** Fine-tuned adapters from training frameworks like Unsloth
- **Custom Models:** Fine-tuned models, merged models, and other custom formats
- **Ollama Models:** GGUF format models from Ollama (both user and system directories)

## Installation

### From PyPI (Recommended)
```bash
pip install hf-model-tool
```

### From Source
```bash
git clone https://github.com/Chen-zexi/hf-model-tool.git
cd hf-model-tool
pip install -e .
```

## Usage

### Interactive Mode
```bash
hf-model-tool
```

Launches the interactive CLI with:
- System status showing assets across all configured directories
- Asset management tools for all supported formats
- Easy directory configuration and management

### Integration with vLLM-CLI

The tool provides API specifically designed for [vLLM-CLI](https://github.com/Chen-zexi/vllm-cli) for model discovery and management. 

Also can be launched directly from [vLLM-CLI](https://github.com/Chen-zexi/vllm-cli)

#### Serving Custom Models in vLLM-CLI
For detailed instructions on serving models from custom directories with vLLM-CLI, see:
- [**Custom Model Serving Guide**](https://github.com/Chen-zexi/vllm-cli/blob/main/docs/custom-model-serving.md) - Complete guide for vLLM-CLI integration

### Python API Usage

```python
from hf_model_tool import get_downloaded_models
from hf_model_tool.api import HFModelAPI

# Quick access to models
models = get_downloaded_models()

# Full API access
api = HFModelAPI()
api.add_directory("/path/to/models", "custom")
assets = api.list_assets()
```

See [API Reference](docs/api-reference.md) for complete documentation. 


### Command Line Usage

The tool provides comprehensive command-line options for direct operations:

#### Basic Commands
```bash
# Launch interactive mode
hf-model-tool

# List all detected assets
hf-model-tool -l
hf-model-tool --list

# Enter asset management mode
hf-model-tool -m
hf-model-tool --manage

# View detailed asset information
hf-model-tool -v
hf-model-tool --view
hf-model-tool --details

# Show version
hf-model-tool --version

# Show help
hf-model-tool -h
hf-model-tool --help
```

#### Directory Management
```bash
# Add a directory containing LoRA adapters
hf-model-tool -path ~/my-lora-models
hf-model-tool --add-path ~/my-lora-models

# Add a custom model directory
hf-model-tool -path /data/custom-models

# Add current working directory
hf-model-tool -path .

# Add with absolute path
hf-model-tool -path /home/user/ai-projects/models
```

#### Sorting Options
```bash
# List assets sorted by size (default)
hf-model-tool -l --sort size

# List assets sorted by name
hf-model-tool -l --sort name

# List assets sorted by date
hf-model-tool -l --sort date
```

### Interactive Navigation
- **↑/↓ arrows:** Navigate menu options
- **Enter:** Select current option
- **Back:** Select to return to previous menu
- **Config:** Select to access settings and directory management
- **Main Menu:** Select to return to main menu from anywhere
- **Exit:** Select to clean application shutdown
- **Ctrl+C:** Force exit

### Key Workflows

1. **Directory Setup:** Add directories containing your AI assets (HuggingFace cache, LoRA adapters, custom models)
2. **List Assets:** View all detected assets with size information across all directories
3. **Manage Assets:** Delete unwanted files and deduplicate identical assets
4. **View Details:** Inspect model configurations and dataset documentation
5. **Configuration:** Manage directories, change sorting preferences, and access help

## Documentation

### Quick Links
- [**Manifest System Guide**](docs/manifest-system.md) - Learn how to customize model metadata with JSON manifests
- [**Custom Directories Guide**](docs/custom-directories.md) - Configure and manage custom model directories
- [**API Reference**](docs/api-reference.md) - Complete API documentation for programmatic usage

## Configuration

### Directory Management
Add custom directories containing your AI assets:
- **HuggingFace Cache:** Standard HF cache with `models--publisher--name` structure
- **Custom Directory:** LoRA adapters, fine-tuned models, or other custom formats  
- **Auto-detect:** Let the tool automatically determine the directory type

#### Interactive Configuration
Access via "Config" from any screen:
- **Directory Management:** Add, remove, and test directories
- **Sort Options:** Size (default), Date, or Name
- **Help System:** Navigation and usage guide

### Manifest System

**Automatic Generation**: When you add a custom directory, the tool automatically generates a `models_manifest.json` file that:
- Becomes the primary source for model information
- Is always read first for classification
- Can be edited to ensure accurate display in vLLM-CLI

Customize model metadata using JSON manifests:
- Define custom names for your models
- Specify publishers and organizations  
- Add notes and documentation
- See [Manifest System Guide](docs/manifest-system.md) for details

**Important**: Review and edit auto-generated manifests to ensure model names and publishers are accurate for your use case.


## Project Structure

```
hf_model_tool/
├── __main__.py       # Application entry point with welcome screen
├── cache.py          # Multi-directory asset scanning
├── ui.py             # Rich terminal interface components
├── utils.py          # Asset grouping and duplicate detection
├── navigation.py     # Menu navigation
├── config.py         # Configuration and directory management
└── asset_detector.py # Asset detection (LoRA, custom models, etc.)
```

## Development

### Requirements
- Python ≥ 3.7
- Dependencies: `rich`, `inquirer`, `html2text`

### Logging
Application logs are written to `~/.hf-model-tool.log` for debugging and monitoring.

### Configuration Storage
Settings and directory configurations are stored in `~/.config/hf-model-tool/config.json`

## Contributing

We welcome contributions from the community! Please feel free to:

1. **Open an issue** at [GitHub Issues](https://github.com/Chen-zexi/hf-model-tool/issues)
2. **Submit a pull request** with your improvements
3. **Share feedback** about your experience using the tool

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.



