basic package setup
diff --git a/man/gpt3.authenticate.Rd b/man/gpt3.authenticate.Rd
new file mode 100644
index 0000000..b8c519d
--- /dev/null
+++ b/man/gpt3.authenticate.Rd
@@ -0,0 +1,23 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/authenticate.R
+\name{gpt3.authenticate}
+\alias{gpt3.authenticate}
+\title{Set up the authentication with your API key}
+\usage{
+gpt3.authenticate(apikey)
+}
+\arguments{
+\item{apikey}{A character vector that is your personal API key}
+}
+\value{
+A confirmation message
+}
+\description{
+Access to GPT-3's functions requires an API key that you obtain from \url{https://openai.com/api/}. \code{gpt3.authenticate()} accepts your API key and ensures that you can connect to the models. \code{gpt3.endsession()} overwrites your API key \emph{for this session} (it is recommended that you run this when you are done). \code{check_apikey_form()} is a simple check if any information has been provided at all.
+}
+\examples{
+# Starting a session:
+gpt3.authenticate(apikey = 'REPLACE_THIS_WITH_YOUR_KEY')
+# After you are finished:
+gpt3.endsession()
+}
diff --git a/man/gpt3.test_request.Rd b/man/gpt3.test_request.Rd
new file mode 100644
index 0000000..e4786d4
--- /dev/null
+++ b/man/gpt3.test_request.Rd
@@ -0,0 +1,20 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/test_request.R
+\name{gpt3.test_request}
+\alias{gpt3.test_request}
+\title{Make a test request to the GPT-3 API}
+\usage{
+gpt3.test_request(verbose = F)
+}
+\arguments{
+\item{verbose}{(boolean) if TRUE prints the actual prompt and GPT-3 completion of the test request (default: FALSE).}
+}
+\value{
+A message of success or failure of the connection.
+}
+\description{
+\code{gpt3.test_request()} sends a basic \href{https://beta.openai.com/docs/api-reference/completions}{completion request} to the Open AI GPT-3 API.
+}
+\examples{
+gpt3.test_request()
+}
diff --git a/man/url.completions.Rd b/man/url.completions.Rd
new file mode 100644
index 0000000..59535b2
--- /dev/null
+++ b/man/url.completions.Rd
@@ -0,0 +1,16 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/base_urls.R
+\docType{data}
+\name{url.completions}
+\alias{url.completions}
+\title{Contains the package's base URLs}
+\format{
+An object of class \code{character} of length 1.
+}
+\usage{
+url.completions
+}
+\description{
+These are the base URLs for the \code{rgpt3} package. Do not change these!
+}
+\keyword{datasets}