Update main.py
Browse files
main.py
CHANGED
@@ -105,27 +105,20 @@ async def get_data(input_file: UploadFile = File(...)):
|
|
105 |
|
106 |
Example Output:
|
107 |
[
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
]
|
130 |
"""
|
131 |
|
|
|
105 |
|
106 |
Example Output:
|
107 |
[
|
108 |
+
"firstname": "firstname",
|
109 |
+
"lastname": "lastname",
|
110 |
+
"email": "email",
|
111 |
+
"contact_number": "contact number",
|
112 |
+
"home_address": "full home address",
|
113 |
+
"home_town": "home town or city",
|
114 |
+
"total_years_of_experience": "total years of experience",
|
115 |
+
"education": "Institution Name, Country, Degree Name, Graduation Year; Institution Name, Country, Degree Name, Graduation Year",
|
116 |
+
"LinkedIn_link": "LinkedIn link",
|
117 |
+
"experience": "Job Title, Start Date - End Date, Company Name; Job Title, Start Date - End Date, Company Name; Job Title, Start Date - End Date, Company Name",
|
118 |
+
"industry": "industry of work",
|
119 |
+
"skills": "Identify and list specific skills mentioned in both the skills section and inferred from the experience section",
|
120 |
+
"positions": ["Job title 1", "Job title 2", "Job title 3"],
|
121 |
+
"summary": "Generate a summary of the CV, including key qualifications, notable experiences, and relevant skills."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
]
|
123 |
"""
|
124 |
|