action nlpcloud_read_entities_v1_en_core_web_sm_entities_post { label: "Read Entities" provider: nlpcloud method: POST path: "/v1/en_core_web_sm/entities" encoding: json input: { type: "object" required: ["text"] properties: { text: { type: "string" } } } output: { type: "object" required: ["entities"] properties: { entities: { type: "array" items: { type: "object" required: ["start", "end", "type", "text"] properties: { end: { type: "integer" } start: { type: "integer" } text: { type: "string" } type: { type: "string" } } } } } } }