action nlpcloud_read_dependencies_v1_en_core_web_sm_dependencies_post { label: "Read Dependencies" provider: nlpcloud method: POST path: "/v1/en_core_web_sm/dependencies" encoding: json input: { type: "object" required: ["text"] properties: { text: { type: "string" } } } output: { type: "object" required: ["arcs", "words"] properties: { arcs: { type: "array" items: { type: "object" required: ["start", "end", "label", "text", "dir"] properties: { dir: { type: "string" } end: { type: "integer" } label: { type: "string" } start: { type: "integer" } text: { type: "string" } } } } words: { type: "array" items: { type: "object" required: ["text", "tag"] properties: { tag: { type: "string" } text: { type: "string" } } } } } } }