group-text-by-json
Structure text into JSON format using predefined templates with placeholders. Ideal for transforming unstructured input into organized, structured data for processing and analysis.
Instructions
Gives a prompt text for AI to group text based on JSON placeholders. This tool accepts a JSON template with placeholders.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
template | Yes | JSON template with placeholders |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"template": {
"description": "JSON template with placeholders",
"type": "string"
}
},
"required": [
"template"
],
"type": "object"
}