Review CV for Job Posting and Generate Interview Questions

Reviews a Applicants CV against a public Job Posting and optional additional requirements

Input

Reviews a Applicants CV against a public Job Posting and optional additional requirements and returns if the Applicant is qualified or not aswell as a list of suggested Interview Questions

[1.0.0]:
deactvated plugins use
VersionAI ModelCreatedLink
1.0.015.06.2023

API

The REST API allows you to call the tool with the same costs as when running the tool. Please generate an Personal access token before using the REST API.

Parameters

  • Job Posting (Job posting): The public job posting
  • Applicant CV (Applicant cv): The CV of the applicant
  • additional requirements (Additional requirements): Requirements not given publicly
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-be0546323ae941fa-review-cv-for-job-posting-and-generate/1.0.0?Job Posting=Electrician%20(m%2Ff)%2C%20Fulltime&Applicant CV=Please%20copy%20the%20user's%20resume%20into%20this%20field&additional requirements=none
  • Install the package with pip
    python3 -m pip install anysolve
  • Run in python3
    import os
    from anysolve import AnySolve
    anysolve_token = os.environ.get('ANYSOLVE_PERSONAL_ACCESS_TOKEN') # Resolve your personal access token here
    client = AnySolve(anysolve_token)
    res = client.run('u-be0546323ae941fa-review-cv-for-job-posting-and-generate','1.0.0', {'Job Posting': 'Electrician (m/f), Fulltime', 'Applicant CV': 'Please copy the user\'s resume into this field', 'additional requirements': 'none'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-be0546323ae941fa-review-cv-for-job-posting-and-generate','1.0.0', Job Posting='Electrician (m/f), Fulltime', Applicant CV='Please copy the user\'s resume into this field', additional requirements='none')