text_classification
Classify text sentiment and categories using AI models to analyze and categorize textual content for various applications.
Instructions
Classify text sentiment/category using DeepInfra OpenAI-compatible API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model | No | ||
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"model": {
"default": null,
"title": "Model",
"type": "string"
},
"text": {
"title": "Text",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}