Configuration

  • Node Type: action

Input Fields

Field NameData TypeRequiredDescription
System PromptTextareaTrueThe system prompt for the analysis
User PromptTextareaTrueThe user prompt for the analysis
User ContextTextTrueThe context for the analysis
{
  "systemPrompt": "<string>"
  "userPrompt": "<string>"
  "userContext": "<string>"
}

Output Fields

Field NameData TypeRequiredDescription
candidatesArrayTrueAn array of candidate objects

Candidate Object

Field NameData TypeRequiredDescription
nameStringTrueThe name of the candidate
descriptionStringTrueA brief description of the candidate
pastExperienceStringTrueThe past experience of the candidate
jobFitLabelStringTrueThe job fit label of the candidate
personKnowledgeLabelStringTrueThe person knowledge label of the candidate
reasoningStringTrueThe reasoning behind the analysis
[
  {
    "name": "<string>",
    "description": "<string>",
    "pastExperience": "<string>",
    "jobFitLabel": "<string>",
    "personKnowledgeLabel": "<string>",
    "reasoning": "<string>"
  }
]