简历解析。触发场景:用户上传简历文件要求解析、提取结构化信息。
读取简历文件(PDF/DOC/DOCX/JPG/PNG),使用大模型提取结构化信息。
html
{简历文本内容}
扮演一个简历分析专家,详细地分析上面的简历
typescript
export interface WorkExperience {
startDate: string | null;
endDate: string | null;
company: string;
industry: string | null;
department: string | null;
positionName: string;
blueCollarPosition: boolean | null;
responsibility: string | null;
workPerformance: string | null;
current: boolean | null;
workDesc: string | null;
};
export interface ProjectExperience {
name: string;
startDate: string | null;
endDate: string | null;
roleName: string | null;
projectDesc: string | null;
};
export interface EducationExperience {
startDate: string | null;
endDate: string | null;
school: string;
major: string | null;
degreeName: string | null; // 高中、本科、专科、硕士、博士、其它
};
export interface ResumeInfo {
name: string | null;
gender: number | null; // 0=男, 1=女
age: string | null;
birthday: string | null;
description: string | null;
workExpList: WorkExperience[];
projExpList: ProjectExperience[];
eduExpList: EducationExperience[];
expectPosition: {
positionName: string | null;
lowSalary: number | null;
highSalary: number | null;
locationName: string | null;
};
contact: {
phone: string | null;
weixin: string | null;
email: string | null;
};
keywords: string[];
awards: string[];
englishCertificates: string[];
professionalSkills: string;
}
json
{
name: 张三,
gender: 0,
age: 30,
birthday: 1995-01-15,
description: 5年Java开发经验...,
workExpList: [...],
projExpList: [...],
eduExpList: [...],
expectPosition: {...},
contact: {...},
keywords: [Java, Spring],
awards: [优秀员工],
englishCertificates: [CET-6],
professionalSkills: 精通Java...
}
markdown
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 51mee-resume-parse-1776110181 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 51mee-resume-parse-1776110181 技能
skillhub install 51mee-resume-parse-1776110181
文件大小: 2.34 KB | 发布时间: 2026-4-14 15:50