Configuration

  • Node Type: action

Input Fields

Field NameData TypeRequiredDescription
User PromptTextareaTrueDefine fields that needs to extracted
ContextTextTrueThe context for the extraction
{
  "userPrompt": "Extract the following details: name<string>, image<url>, jobTitle<string>, dateofBirth<string>",
  "userContext": "<string>"
}

Output Fields

Field NameData TypeDescription
Extracted InformationArrayThe structured extracted data
[
  {
    "name": "David Park",
    "image": "https://example.com/davidpark.jpg",
    "jobTitle": "Software Engineer",
    "dateofBirth": "1990-01-01"
  },
  {
    "name": "Emily Chen",
    "image": "https://example.com/emilychen.jpg",
    "jobTitle": "Marketing Manager",
    "dateofBirth": "1985-06-15"
  },
  {
    "name": "Michael Lee",
    "image": "https://example.com/michaellee.jpg",
    "jobTitle": "Data Scientist",
    "dateofBirth": "1992-03-20"
  }
]