adapt_cv_to_latest_job
Tailor Francisco Perez-Sorrosal's CV to match specific LinkedIn job descriptions by position, location, and job ID, ensuring alignment with job requirements.
Instructions
Adapts Francisco Perez-Sorrosal's CV to the position of the job description retrieved from linkedin
for the particular location specified and based on the job id.
Args:
position: The position to search for jobs for
location: The location where the job should be located
job_id: The job id to retrieve the metadata for
Returns:
str: The job details and the generated adapted CV tailored to the job description
Input Schema
Name | Required | Description | Default |
---|---|---|---|
job_id | No | first | |
location | No | San Francisco | |
position | No | Research Engineer or ML Engineer or AI Engineer |
Input Schema (JSON Schema)
{
"properties": {
"job_id": {
"default": "first",
"title": "Job Id",
"type": "string"
},
"location": {
"default": "San Francisco",
"title": "Location",
"type": "string"
},
"position": {
"default": "Research Engineer or ML Engineer or AI Engineer",
"title": "Position",
"type": "string"
}
},
"title": "adapt_cv_to_latest_jobArguments",
"type": "object"
}