CoreNLP ======= Use CoreNLP to annotate text. For more information, check out https://stanfordnlp.github.io/CoreNLP/. .. toctree:: :maxdepth: 2 :titlesonly: :caption: RPC Categories RPCS ---- .. function:: CoreNLP.annotate(text: String, annotators: List?) Annotate text using the provided annotators. **Arguments:** - ``text: String`` (`String `__) - the text to annotate - ``annotators: List?`` (`List `__ | `String `__) - a list of the annotators to use **Returns:** ``Object`` (`Object `__) - structured data containing the annotation results .. function:: CoreNLP.getAnnotators() Get a list of all the supported annotators. The complete list is available at https://stanfordnlp.github.io/CoreNLP/annotators.html. **Returns:** ``List`` (`List `__ | `String `__) - list of supported annotators