Learn R Programming

rollama (version 0.2.0)

create_model: Create a model from a Modelfile

Description

Create a model from a Modelfile

Usage

create_model(model, modelfile, server = NULL)

Value

Nothing. Called to create a model on the Ollama server.

Arguments

model

name of the model to create

modelfile

either a path to a model file to be read or the contents of the model file as a character vector.

server

URL to one or several Ollama servers (not the API). Defaults to "http://localhost:11434".

Details

Custom models are the way to save your system message and model parameters in a dedicated shareable way. If you use show_model(), you can look at the configuration of a model in the column modelfile. To get more information and a list of valid parameters, check out https://github.com/ollama/ollama/blob/main/docs/modelfile.md. Most options are also available through the query and chat functions, yet are not persistent over sessions.

Examples

Run this code
modelfile <- system.file("extdata", "modelfile.txt", package = "rollama")
if (FALSE) create_model("mario", modelfile)
modelfile <- "FROM llama3.1\nSYSTEM You are mario from Super Mario Bros."
if (FALSE) create_model("mario", modelfile)

Run the code above in your browser using DataLab