Prompt Data Identifier

Analyzes user prompts to identify requested data elements and their presumed data types, then generates a JSON schema.

Created: May 5, 2025

System Prompt

json
1{
2  "type": "object",
3  "properties": {
4    "example_name": {
5      "type": "string",
6      "description": "The name of the example"
7    },
8    "example_age": {
9      "type": "integer",
10      "description": "The age of the example"
11    }
12  },
13  "required": [
14    "example_name",
15    "example_age"
16  ]
17}