update to recent davinci003 model
diff --git a/man/gpt3_completions.Rd b/man/gpt3_completions.Rd
index 59eb046..4fa2416 100644
--- a/man/gpt3_completions.Rd
+++ b/man/gpt3_completions.Rd
@@ -8,7 +8,7 @@
   prompt_var,
   id_var,
   param_output_type = "complete",
-  param_model = "text-davinci-002",
+  param_model = "text-davinci-003",
   param_suffix = NULL,
   param_max_tokens = 100,
   param_temperature = 0.9,
@@ -28,7 +28,7 @@
 
 \item{param_output_type}{character determining the output provided: "complete" (default), "text" or "meta"}
 
-\item{param_model}{a character vector that indicates the \href{https://beta.openai.com/docs/models/gpt-3}{model} to use; one of "text-davinci-002" (default), "text-curie-001", "text-babbage-001" or "text-ada-001"}
+\item{param_model}{a character vector that indicates the \href{https://beta.openai.com/docs/models/gpt-3}{model} to use; one of "text-davinci-003" (default), "text-davinci-002", "text-davinci-001", "text-curie-001", "text-babbage-001" or "text-ada-001"}
 
 \item{param_suffix}{character (default: NULL) (from the official API documentation: \emph{The suffix that comes after a completion of inserted text})}
 
diff --git a/man/gpt3_single_completion.Rd b/man/gpt3_single_completion.Rd
index 78eab5e..ae540ca 100644
--- a/man/gpt3_single_completion.Rd
+++ b/man/gpt3_single_completion.Rd
@@ -6,7 +6,7 @@
 \usage{
 gpt3_single_completion(
   prompt_input,
-  model = "text-davinci-002",
+  model = "text-davinci-003",
   output_type = "complete",
   suffix = NULL,
   max_tokens = 100,
@@ -23,7 +23,7 @@
 \arguments{
 \item{prompt_input}{character that contains the prompt to the GPT-3 request}
 
-\item{model}{a character vector that indicates the \href{https://beta.openai.com/docs/models/gpt-3}{model} to use; one of "text-davinci-002" (default), "text-curie-001", "text-babbage-001" or "text-ada-001"}
+\item{model}{a character vector that indicates the \href{https://beta.openai.com/docs/models/gpt-3}{model} to use; one of "text-davinci-003" (default), "text-davinci-002", "text-davinci-001", "text-curie-001", "text-babbage-001" or "text-ada-001"}
 
 \item{output_type}{character determining the output provided: "complete" (default), "text" or "meta"}