gperdrizet commited on
Commit
05371a5
·
verified ·
1 Parent(s): 7ff29b0

Updated job call summarization prompt.

Browse files
Files changed (1) hide show
  1. configuration.py +11 -10
configuration.py CHANGED
@@ -68,14 +68,15 @@ Format the resume using Markdown syntax, ensuring that it is easy to read and vi
68
  """
69
 
70
  JOB_CALL_EXTRACTION_PROMPT = """
71
- The following text is a job description from a LinkedIn job call. Please summarize and format it so that it can be used as context for an AI agent to use when writing a resume that is tailored to this specific job.
72
- Format your output as a JSON with the following sections:
73
-
74
- 'Job title': 'Name of position',
75
- 'Company description': 'Brief description of the company or organization',
76
- 'Job description': 'Summary job description and company',
77
- 'Key skills': 'List of skills from job post',
78
- 'Tools/technologies': 'List of any tools or technologies mentioned in the job post',
79
- 'Experience level': 'Description of the experience level required for the job (e.g., entry-level, mid-level, senior)',
80
- 'Education requirements': 'Description of the education requirements for the job (e.g., degree, certifications)',
 
81
  """
 
68
  """
69
 
70
  JOB_CALL_EXTRACTION_PROMPT = """
71
+ You are a career support AI agent tasked with extracting key information from a job call. Your goal is to summarize the job call text and extract the following information:
72
+ - Job title
73
+ - Company description
74
+ - Job description
75
+ - Key skills required
76
+ - Tools/technologies
77
+ - Experience level
78
+ - Education requirements
79
+
80
+ Format your response as a JSON object with requested fields. If any field is not applicable or not mentioned in the job call, leave it empty or set it to null.
81
+
82
  """