Developer
开发者文档
探索VocSeed API和SDK,将职业成长能力集成到您的应用中
API 服务
强大的API接口,助力您快速构建应用
快速开始
example.js
// 引入 VocSeed SDK import { VocSeed } from '@vocseed/sdk'; // 初始化客户端 const client = new VocSeed({ apiKey: 'your-api-key', environment: 'production' }); // 获取职业发展建议 const result = await client.talent.getCareerPath({ userId: 'user_123', currentRole: '软件工程师', targetRole: '技术总监' }); console.log(result.recommendations);