Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

myAchievements: resume generator (fixes #7441) #7445

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
some improvements
  • Loading branch information
Mutugiii committed Jun 4, 2024
commit c0584abe09bd69167fe276554407bfe00866b030
10 changes: 5 additions & 5 deletions src/app/users/users-achievements/users-achievements.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,22 +159,22 @@ export class UsersAchievementsComponent implements OnInit {
achievements: ${achievementsHeader} - ${achievements}
goals: ${goals}
purpose: ${purpose}
${formData ? `User-filled form data ${formData}` : ''}

references: ${formatReferences(references)}

Generate a resume following the format below as close as possible
1. Personal Information
2. Objective/Summary
3. Education
4. Experience
5. Skills
3. Education ${formData.education ? formData.education : ''}
4. Experience ${formData.experience ? formData.experience : ''}
5. Skills ${formData.skills ? formData.skills : ''}
6. Certifications
7. Awards and Honors(optional)
8. References(optional)
9. Additional Information ${formData.additional ? formData.additional : ''}

The resume is in PDF format, so vary the text style(Using paragraphs, bullet points) to make it look like a resume
Only output the resume, no additional context
Only output the resume(in the language of the input), no additional context
`,
aiProvider: { name: 'openai' },
};
Expand Down