action symanto_personality { label: "Personality Traits" description: "Predict the personality trait of author of any written text.\n\nSupported Languages: [`ar`, `de`, `en`, `es`, `fr`, `it`, `nl`, `pt`, `ru`, `tr`, `zh`]\n\nReturned labels:\n\n* emotional\n* rational" provider: symanto method: POST path: "/personality" 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." } } } } } } } }