action symanto_communication { label: "Communication & Tonality" description: "Identify the purpose and writing style of a written text.\n\nSupported Languages: [`ar`, `de`, `en`, `es`, `fr`, `it`, `nl`, `pt`, `ru`, `tr`, `zh`]\n\nReturned labels:\n* action-seeking\n* fact-oriented\n* information-seeking\n* self-revealing" provider: symanto method: POST path: "/communication" encoding: json input: { type: "object" properties: { all: { type: "boolean" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["predictions"] properties: { id: { type: "string" description: "id of the post." } predictions: { type: "array" description: "the list of predictions." items: { type: "object" required: ["prediction", "probability"] properties: { prediction: { type: "string" description: "the predicted label." } probability: { type: "number" description: "the probability of the predicted label." } } } } } } } }