Copy a model. Creates a model with another name from an existing model.
Usage
ollama_copy_model(source, destination)
Arguments
- source
Name of the existing model to copy
- destination
Name of the new model. Must be different from source
.
Examples
if (FALSE) {
ollama_copy_model("llama2", "llama2_backup")
}