Classification
This article is not tied to any particular programming language. It is recommended to conduct experiments using the OpenAI Playground environment. The crucial aspect is to generate a clear and comprehensible request and request a response in JSON format. It is possible that the response may contain surplus text that should be eliminated before parsing the JSON response.
Prompt:
Classify seniority of a developer based on their CV.
Return JSON
{
developer_name: string,
seniority:junior|standard|senior,
class:frontend|backend|full-stack|other,
certainity:float
}
CV: ${SCRAPPED_CV_TEXT}
**Example response: **
{
developer_name: 'Lukas Gren',
seniority: 'Senior',
class: 'Full-Stack',
certainity: 0.9
}