학습: 웹 버전의 이력서를 최적화하고 생성하는 일련의 프롬프트 구축하기

AI 유틸리티 명령11개월 전 업데이트 AI 공유 서클
9.8K 00

일상 업무나 AI 애플리케이션 엔지니어링에서 흔히 볼 수 있는 매우 간단하지만 매우 유용한 단서 단어 사용 팁을 생각하면 사람들이 종종 사용할 생각을 하지 못하는 관성 때문에...

 

사고 과정은 다음과 같습니다:

작업 목표 정의 - 해당 도메인 전문 지식 학습 - 결과물 구조화 - 지침 템플릿 구성

여기서는 이력서 최적화 시나리오를 예로 들어 설명합니다. 이력서를 직접 최적화하기 위해 큰 모델에 너무 많이 의존하지 않도록 주의하세요. 모든 최적화 기술은 스스로 학습한 지침에 전문 지식을 접목한 것입니다.

学习:打造一套优化并生成网页版简历的提示词

https://b_9vhm6j5.v0.build/ 에서 미리 보기

 

자료 준비

  1. 가급적이면 마크다운 형식의 원본 이력서, 워드 및 PDF도 괜찮습니다!
  2. 온라인 이력서 작성 팁 검색
  3. 이력서 템플릿 찾기 및 AI 기술을 사용하여 HTML 형식의 이력서 템플릿 코드 생성하기

 

이력서 작성 팁

다음 정보는 온라인에서 찾은 다음 대형 모델이 간단하게 정리할 수 있도록 만들었습니다.

关于我(About Me)
- 简介:这一部分相当于简历的自我介绍,为招聘经理提供了一个简短而精炼的职业背景、相关技能和主要成就概览。

教育背景(Education)
- 学位信息:
- 硕士学位(Masters Degree in XX):列出学习时间、学校名称和地点。
- 学士学位(Bachelors Degree in XX):同样列出学习时间、学校名称和地点。

工作经验(Work Experience)
- 公司信息:每一段工作经验都应包括公司名称、职位、地点和工作时间。
- 重要性:包括相关的工作经验非常重要,因为它表明你理解工作的要求。
- 具体信息:工作经验部分应包含关于你的就业历史的具体信息,这有助于招聘经理更好地了解你的职业发展轨迹。

技能(Skills)
- 关键技能:列出所有与你申请职位相关的重要技能,如时间管理、沟通能力、批判性思维、分析能力、SEO、项目管理等。这些技能将帮助你在众多求职者中脱颖而出。

成就(Achievements)
- 个人成就:列出你职业生涯中的重要成就,包括达成的目标或完成的重要项目。每一项成就都应包括详细描述、地点和日期,以便招聘经理更好地评估你的能力和潜力。

这份简历模板结构清晰,内容全面,能够有效帮助求职者展示自己的优势,提高面试机会。通过详细填写每一个部分,你可以打造一份专业且具有竞争力的简历。

 

이력서 템플릿 생성

Claude와 v0.dev를 사용하여 각각 HTML 이력서 템플릿을 생성하고, 생성된 필드가 위의 이력서 작성 팁에 언급된 필드와 일치해야 합니다.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Resume</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 40px;
max-width: 800px;
margin: 0 auto;
}
.header {
text-align: center;
border-bottom: 2px solid black;
padding-bottom: 20px;
margin-bottom: 20px;
}
h1 {
margin: 0;
font-size: 48px;
font-weight: bold;
}
h2 {
font-size: 20px;
margin-top: 0;
margin-bottom: 10px;
border-bottom: 1px solid black;
padding-bottom: 5px;
}
h3 {
font-size: 16px;
margin-bottom: 5px;
}
.title {
font-size: 24px;
margin-top: 5px;
}
.contact-info {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.contact-info div {
display: flex;
align-items: center;
}
.contact-info img {
width: 20px;
height: 20px;
margin-right: 10px;
}
.main {
display: flex;
margin-top: 20px;
}
.left-column {
flex: 1;
padding-right: 20px;
}
.right-column {
flex: 2;
border-left: 1px solid black;
padding-left: 20px;
}
ul {
padding-left: 20px;
margin-top: 0;
margin-bottom: 10px;
}
.work-experience {
margin-bottom: 20px;
}
.company {
font-weight: bold;
}
.location-date {
float: right;
text-align: right;
}
p {
margin: 5px 0;
}
</style>
</head>
<body>
<div class="header">
<h1>YOUR NAME</h1>
<div class="title">TITLE</div>
</div>

<div class="main">
<div class="left-column">
<h2>ABOUT ME</h2>
<p>Similar to resume summary - about me is an introduction that provides a brief snapshot of your professional background, relevant skills, and key accomplishments.</p>

<h2>EDUCATION</h2>
<h3>Masters Degree in XX</h3>
<p>Jun 2010 - March 2012</p>
<ul>
<li>School Here</li>
<li>Location</li>
</ul>

<h3>Bachelors Degree in XX</h3>
<p>Jun 2002 - March 2006</p>
<ul>
<li>School Here</li>
<li>Location</li>
</ul>

<h2>SKILLS</h2>
<ul>
<li>Time management</li>
<li>Communication</li>
<li>Critical thinking</li>
<li>Analytics</li>
<li>Seo</li>
<li>Communication</li>
<li>Project management</li>
</ul>

<h2>ACHIEVEMENTS</h2>
<p><strong>Your achievement</strong></p>
<p>Location<br>Date</p>

<p><strong>Your achievement</strong></p>
<p>Location<br>Date</p>
</div>

<div class="right-column">
<h2>WORK EXPERIENCE</h2>
<div class="work-experience">
<p><span class="company">COMPANY</span> <span class="location-date">Location<br>Date</span></p>
<p>Indicate your role/position in the company</p>
<p>Including relevant work experience on your resume is important because it shows hiring managers you've understood the requirements of the job.</p>
<ul>
<li>work experience section of your resume should contain specific information about your employment history.</li>
<li>work experience section of your resume should contain specific information about your employment history.</li>
</ul>
</div>

<div class="work-experience">
<p><span class="company">COMPANY</span> <span class="location-date">Location<br>Date</span></p>
<p>Indicate your role/position in the company</p>
<p>Including relevant work experience on your resume is important because it shows hiring managers you've understood the requirements of the job.</p>
<ul>
<li>work experience section of your resume should contain specific information about your employment history.</li>
<li>work experience section of your resume should contain specific information about your employment history.</li>
</ul>
</div>

<div class="work-experience">
<p><span class="company">COMPANY</span> <span class="location-date">Location<br>Date</span></p>
<p>Indicate your role/position in the company</p>
<p>Including relevant work experience on your resume is important because it shows hiring managers you've understood the requirements of the job.</p>
<ul>
<li>work experience section of your resume should contain specific information about your employment history.</li>
<li>work experience section of your resume should contain specific information about your employment history.</li>
</ul>
</div>
</div>
</div>

<div class="contact-info">
<div>
<img src="/placeholder.svg" alt="Phone">
<span>123-456-7890</span>
</div>
<div>
<img src="/placeholder.svg" alt="Email">
<span>hello@reallygreatsite.com</span>
</div>
<div>
<img src="/placeholder.svg" alt="Website">
<span>www.reallygreatsite.com</span>
</div>
</div>
</body>
</html>

 

생성자 인스트럭션

# 任务

优化附件中的PDF、word、markdown格式简历,输出HTML格式的简历。

## 简历优化技巧

{引用简历编写技巧}

## 限制

- 列举项目经验数量:5

- 列举近期工作单位:3

- ...

## 按照以下HTML格式输出完整代码块

```
{引用HTML简历模板}

```

 

변수는 '제한 사항' 섹션에서 수정되며, 그렇지 않으면 출력은 HTML 이력서 템플릿의 형식으로만 출력되어 원본 이력서에서 정보가 누락됩니다.

 

어플라이언스

1. 첨부 파일로 업로드한 이력서를 ChatGPT에 업로드합니다.

2. 구성된 큐 단어를 입력합니다.

3. 음... 또한 기본 HTML 이력서 템플릿은 기본 구조만 유지하여 지침에서 가능한 한 문맥 길이를 적게 차지하고 스타일을 꾸미지 않습니다!

4. 마지막 단계는 스타일 최적화를 위해 만족스러운 콘텐츠가 포함된 이력서의 HTML 버전을 v0.dev에 입력하는 것입니다:

学习:打造一套优化并生成网页版简历的提示词

 

궁극

전문가를 채용하거나 오피스 문서를 최적화하거나 코드를 작성하는 데 능숙하다면 어떤 부분은 매우 초보적으로 느껴질 것입니다. 여기서 여러분이 해야 할 일은 강점을 취하고 큰 모델을 사용하여 자신이 잘하지 못하는 능력을 개선하여 강점을 더 강하게 만들고 약점을 채우는 것입니다. 이러한 제너레이티브 AI 기능의 폭발적인 발전은 호기심 많은 여러분을 위한 것입니다.

© 저작권 정책

관련 문서

댓글 없음

댓글에 참여하려면 로그인해야 합니다!
지금 로그인
없음
댓글 없음...