package textrazor

  1. Overview
  2. Docs
module Options : sig ... end

Module for analysis options.

type t = {
  1. categories : Category.t list;
  2. coarse_topics : Topic.t list;
  3. cleaned_text : string option;
  4. entailments : Entailment.t list;
  5. entities : Entity.t list;
  6. language : string;
  7. phrases : Phrase.t list;
  8. properties : Property.t list;
  9. raw_text : string option;
  10. relations : Relation.t list;
  11. sentences : Sentence.t list;
  12. topics : Topic.t list;
}

Data structure for analysis results.