token_classification
Identify and extract named entities from text using named entity recognition (NER) to categorize entities like people, organizations, and locations.
Instructions
Perform named entity recognition (NER) on text 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"
}