Skip to main content
The CLI supports two main workflows:
  • GGUF Model Download: Download pre-built models from the LEAP Model Library (no authentication required)
  • Model Bundling: Create bundles from your own fine-tuned models (requires authentication)

Install

pip install leap-bundle

Requirements

Before using the Model Bundle Tool, ensure your system meets the following requirements:
  • Python 3.8 or higher: The CLI tool is built with Python and requires at least version 3.8.
  • pip installed: You need pip to install the CLI tool and its dependencies.
  • AWS services access: Model uploads use Amazon Web Services (AWS) for file storage. Ensure you can access amazonaws.com domains from your network. If you’re behind a corporate firewall or VPN, you may need to configure network settings to allow access to AWS services.
If model uploads fail with connectivity errors, verify that your network allows access to AWS services and that DNS resolution is working properly.

Quick Start

Download GGUF models from the LEAP Model Library. No authentication required.
leap-bundle download <model-name> [--quantization <quantization>]
Example:
leap-bundle download LFM2-1.2B --quantization Q5_K_M
The command will:
  1. Resolve the appropriate manifest URL for the model/quantization.
  2. Create an output directory based on the URL or according to --output-path if specified.
  3. Download the JSON manifest file for the given combination of model and quantization, if it exists.
  4. Download all model files referenced in the manifest.
  5. Update the local manifest to use relative paths to the downloaded files.
Manifest downloads don’t require authentication with leap-bundle login. They work immediately after installation.

Next Steps