Create a model from a Modelfile — create_model (original) (raw)
Create a model from a Modelfile
Usage
create_model(model, modelfile, server = NULL)
Arguments
name of the model to create
either a path to a model file to be read or the contents of the model file as a character vector.
URL to one or several Ollama servers (not the API). Defaults to "http://localhost:11434".
Value
Nothing. Called to create a model on the Ollama server.
Details
Custom models are the way to save your system message and model parameters in a dedicated shareable way. If you use [show_model()](pull%5Fmodel.html)
, you can look at the configuration of a model in the column modelfile. To get more information and a list of valid parameters, check outhttps://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
modelfile <- system.file("extdata", "modelfile.txt", package = "rollama")
if (FALSE) create_model("mario", modelfile) # \dontrun{}
modelfile <- "FROM llama3.1\nSYSTEM You are mario from Super Mario Bros."
if (FALSE) create_model("mario", modelfile) # \dontrun{}