Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ollama-create

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ollama-create

NodeJS script to add models to ollama without duplication.

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Ollama Create NodeJS

GitHub License GitHub Last Commit NPM Package Version NPM Package Size NodeJS Version

Introduction

NodeJS CLI script which simplifies adding GGUF models to Ollama by creating symlinks and downloading necessary metadata from the Ollama Registry.

Benefits:

  • Avoids model duplication within Ollama.
  • Easy integration of GGUF models.
  • No dependencies besides NodeJS.

Installation

Requires NodeJS version 18.11.0 or higher. Install it globally using npm:

npm install -g ollama-create

Usage

Usage: ollama-create [OPTIONS] [MODEL...]

Create a new Ollama model based on a base model from the Ollama registry.
MODEL can be a local GGUF file or the name of a model in the Ollama registry.

All specified files will be symlinked to Ollama to avoid duplication.
If a file is supplied which doesn't exist, it will be created from the base model in the specified location.
To remove a setting from the base model, use --no-<option>.

OPTIONS:
  -f, --from <from>           Defines the base model from the Ollama registry to use.
                              Defaults to the model architecture from the GGUF metadata.
  -n, --name <name>           Set the name for the new model.
                              Defaults to <name>-<size>-<finetune>-<version> from the GGUF metadata
                              or the base model name if no model file is specified.
  -d, --dir <dir>             Download all base model files to the specified directory and create symlinks for Ollama.

  -p, --params <json file>    Specify a JSON file containing parameters for Ollama.
  -m, --messages <json file>  Provide a JSON file containing the message history.
  -t, --template <txt file>   Define a file containing the full prompt template.
  -s, --system <txt file>     Specify a file containing the system message.
  -a, --adapter <gguf file>   Apply (Q)LoRA adapters to the model.
  -j, --projector <gguf file> Define multimodal projectors.
  -l, --license <txt file>    Specify a file containing the legal license.

  -g, --show                  Print the GGUF metadata of the model.
  -h, --help                  Display this help and exit.

Example

Download a model from the Ollama Registry

ollama-create gemma2

This will download the Gemma 2 model from the Ollama Registry and configure it in Ollama (same as ollama pull gemma2).

Use existing GGUF model file

ollama-create --from llama3.1 my-model.gguf

This will use the local my-model.gguf file and configure it in Ollama by creating a symlink. The Ollama metadata (template, params etc.) is taken from the Llama 3.1 model.

If my-model.gguf doesn't exist, the llama3.1 model will be downloaded and saved as my-model.gguf.

Use custom template

ollama-create --template my-template.txt gemma2

This will download the Gemma 2 model but use the local my-template.txt file as prompt template.

If my-template.txt doesn't exist, the template from the Gemma 2 model will be downloaded and saved as my-template.txt.

Remove parameters

ollama-create --no-params gemma2

This will download the Gemma 2 model but removes all parameter instructions.

Save all model files in custom location

ollama-create --dir ./models/gemma gemma2

This will download the Gemma 2 model and save all Ollama artifacts to the ./models/gemma/ directory. Symlinks in the Ollama blob store are created for all files.

Print GGUF metadata

ollama-create --metadata my-model.gguf

Prints the GGUF metadata of the model file as JSON.

FAQs

Package last updated on 06 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc