upd tester
diff --git a/R/test_request.R b/R/test_request.R
index 673f1c0..515abc2 100644
--- a/R/test_request.R
+++ b/R/test_request.R
@@ -2,23 +2,24 @@
 #'
 #' @description
 #' `gpt3_test_request()` sends a basic [completion request](https://beta.openai.com/docs/api-reference/completions) to the Open AI GPT-3 API.
-#' @param verbose (boolean) if TRUE prints the actual prompt and GPT-3 completion of the test request (default: FALSE).
+#' @param verbose (boolean) if TRUE prints the actual prompt and GPT-3 completion of the test request (default: TRUE).
 #' @return A message of success or failure of the connection.
 #' @examples
 #' gpt3_test_request()
 #' @export
-gpt3_test_request = function(verbose=F){
+gpt3_test_request = function(verbose=T){
 
   check_apikey_form()
 
   test_prompt = 'Write a story about R Studio:'
-  test_outout = gpt3_single_request(prompt_ = test_prompt
+  test_output = gpt3_single_request(prompt_ = test_prompt
                                   , max_tokens = 100)
   print(paste0('.. test successful ..'))
 
   if(verbose==T){
-    print(paste0('Requested completion for this prompt --> ', test_prompt))
-    print(paste0('GPT-3 completed --> ', test_outout))
+    # print(paste0('Requested completion for this prompt --> ', test_prompt))
+    # print(paste0('GPT-3 completed --> ', test_output))
+    test_output
   }
 
 }