Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -111,12 +111,8 @@ async def get_data(user_id: str = Query(...),input_file: UploadFile = File(...))
|
|
111 |
"total_years_of_experience" : "total years of experience",
|
112 |
"LinkedIn_link" : "LinkedIn link",
|
113 |
"experience" : "experience",
|
114 |
-
"skills" : skills
|
115 |
]
|
116 |
-
Instructions:
|
117 |
-
1. Extract skills based on the "experience" section, looking for specific keywords like tools, technologies, programming languages, or relevant abilities.
|
118 |
-
2. If skills are not explicitly mentioned, infer them from the job responsibilities described.
|
119 |
-
3. Provide the skills as a comma-separated list.
|
120 |
"""
|
121 |
|
122 |
response = model_text.generate_content(prompt)
|
|
|
111 |
"total_years_of_experience" : "total years of experience",
|
112 |
"LinkedIn_link" : "LinkedIn link",
|
113 |
"experience" : "experience",
|
114 |
+
"skills" : skills(Extract skills based on the "experience" section, looking for specific keywords like tools, technologies, programming languages, or relevant abilities)
|
115 |
]
|
|
|
|
|
|
|
|
|
116 |
"""
|
117 |
|
118 |
response = model_text.generate_content(prompt)
|