language -The language of the text, which will be the same as the language specified in the request or, if not specified, the automatically-detected language
text -The original text passed into the API. NA if not passed due to being zero-length etc.
Details
string can be a character vector, or a location of a file content on Google cloud Storage. This URI must be of the form gs://bucket_name/object_name
Encoding type can usually be left at default UTF8. Read more here
## Not run:text <- "to administer medicince to animals is frequently a very difficult matter, and yet sometimes it's necessary to do so"
nlp <- gl_nlp(text)nlp$sentences
nlp$tokens
nlp$entities
nlp$documentSentiment
## vectorised inputtexts <- c("The cat sat one the mat","oh no it didn't you fool")nlp_results <- gl_nlp(texts)## End(Not run)