diff --git a/man/ollama_delete_model.Rd b/man/ollama_delete_model.Rd index 19310b3..2619e9d 100644 --- a/man/ollama_delete_model.Rd +++ b/man/ollama_delete_model.Rd @@ -4,7 +4,7 @@ \alias{ollama_delete_model} \title{Delete a Model} \usage{ -ollama_delete_model(model) +ollama_delete_model(name) } \arguments{ \item{name}{Model name to delete} diff --git a/man/ollama_list.Rd b/man/ollama_list.Rd index f6e43e2..c3a46a2 100644 --- a/man/ollama_list.Rd +++ b/man/ollama_list.Rd @@ -1,21 +1,15 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/manage_models.R, R/stream_pull_model.R +% Please edit documentation in R/manage_models.R \name{ollama_list} \alias{ollama_list} \title{List Local Models} \usage{ -ollama_list() - ollama_list() } \value{ A list with fields \code{name}, \code{modified_at}, and \code{size} for each model. - -A with fields \code{name}, \code{modified_at}, and \code{size} for each model. } \description{ -List models that are available locally. - List models that are available locally. } \examples{ @@ -23,8 +17,4 @@ List models that are available locally. ollama_list() } -\dontrun{ -ollama_list() -} - } diff --git a/man/ollama_pull_model.Rd b/man/ollama_pull_model.Rd index 131536d..bc85884 100644 --- a/man/ollama_pull_model.Rd +++ b/man/ollama_pull_model.Rd @@ -4,16 +4,16 @@ \alias{ollama_pull_model} \title{Pull a Model} \usage{ -ollama_pull_model(model, stream = TRUE) +ollama_pull_model(name, insecure = FALSE, stream = TRUE) } \arguments{ -\item{stream}{(optional) if FALSE the response will be returned as a single -response object, rather than a stream of objects} - \item{name}{Name of the model to pull} \item{insecure}{(optional) allow insecure connections to the library. Only use this if you are pulling from your own library during development.} + +\item{stream}{(optional) if FALSE the response will be returned as a single +response object, rather than a stream of objects} } \value{ None diff --git a/man/ollama_show_model_info.Rd b/man/ollama_show_model_info.Rd index 2ab2422..ad7c282 100644 --- a/man/ollama_show_model_info.Rd +++ b/man/ollama_show_model_info.Rd @@ -1,26 +1,18 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/manage_models.R, R/stream_pull_model.R +% Please edit documentation in R/manage_models.R \name{ollama_show_model_info} \alias{ollama_show_model_info} \title{Show Model Information} \usage{ -ollama_show_model_info(model) - -ollama_show_model_info(model) +ollama_show_model_info(name) } \arguments{ -\item{model}{Name of the model to show} - \item{name}{Name of the model to show} } \value{ -A list. - A list. } \description{ -Show details about a model including modelfile, template, parameters, license, and system prompt. - Show details about a model including modelfile, template, parameters, license, and system prompt. } \examples{ @@ -29,9 +21,4 @@ ollama_show_model_info("llama2") ollama_show_model_info("mistral") } -\dontrun{ -ollama_show_model_info("llama2") -ollama_show_model_info("mistral") -} - }