changes method for API key retrieval
diff --git a/R/authenticate.R b/R/authenticate.R
index e896cec..c6a3a69 100644
--- a/R/authenticate.R
+++ b/R/authenticate.R
@@ -2,8 +2,9 @@
 #'
 #' @description
 #' Access to GPT-3's functions requires an API key that you obtain from [https://openai.com/api/](https://openai.com/api/). `gpt3.authenticate()` accepts your API key and ensures that you can connect to the models. `gpt3.endsession()` overwrites your API key _for this session_ (it is recommended that you run this when you are done). `check_apikey_form()` is a simple check if any information has been provided at all.
-#' @param apikey A character vector that is your personal API key
+#' @param path The file path to the API key
 #' @return A confirmation message
+#' @details The easiest way to store you API key is in a `.txt` file with _only_ the API key in it (without quotation marks or other common string indicators). `gpt3.authenticate()` reads the single file you point it to and retrieves the content as authentication key for all requests.
 #' @examples
 #' # Starting a session:
 #' gpt3.authenticate(apikey = 'REPLACE_THIS_WITH_YOUR_KEY')
@@ -11,8 +12,9 @@
 #' # After you are finished:
 #' gpt3.endsession()
 #' @export
-gpt3.authenticate = function(apikey){
-  api_key <<- apikey
+gpt3.authenticate = function(path){
+  apikey_ = readLines(path)
+  api_key <<- apikey_
   print(paste0("Will use --> ", api_key, " for authentication."))
 }