From b661452043034e8a6ae229397005baca00c3e77e Mon Sep 17 00:00:00 2001 From: Romain Francois Date: Sat, 30 Mar 2024 18:36:34 +0100 Subject: [PATCH] document() --- man/models.Rd | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/man/models.Rd b/man/models.Rd index 5427914..39d100c 100644 --- a/man/models.Rd +++ b/man/models.Rd @@ -4,15 +4,13 @@ \alias{models} \title{Retrieve all models available in the Mistral API} \usage{ -models(error_call = caller_env(), dry_run = FALSE) +models(error_call = caller_env()) } \arguments{ \item{error_call}{The execution environment of a currently running function, e.g. \code{caller_env()}. The function will be mentioned in error messages as the source of the error. See the \code{call} argument of \code{\link[rlang:abort]{abort()}} for more information.} - -\item{dry_run}{if TRUE the request is not performed} } \value{ A character vector with the models available in the Mistral API @@ -21,6 +19,6 @@ A character vector with the models available in the Mistral API Retrieve all models available in the Mistral API } \examples{ -models(dry_run = TRUE) +models() }