tmp
This commit is contained in:
34
agent/escort-admin/prompts.js
Normal file
34
agent/escort-admin/prompts.js
Normal file
@@ -0,0 +1,34 @@
|
||||
import moment from "moment";
|
||||
import services from "../../resource/services.js";
|
||||
import agreement from "../../resource/agreement.js";
|
||||
|
||||
class EscortAdminPrompts {
|
||||
static buildSystemPrompt(userInfo) {
|
||||
let userInfo_str = "用户未登录,提示用户先登录,并在'我的'中完善个人信息";
|
||||
if (userInfo) {
|
||||
userInfo_str = JSON.stringify({
|
||||
name: userInfo.profile.name,
|
||||
mobile: userInfo.profile.mobile,
|
||||
role: userInfo.app
|
||||
});
|
||||
}
|
||||
|
||||
return `
|
||||
# 角色定义
|
||||
你是小暖,暖橙陪诊平台的管理助手,直接、高效的解决平台问题。
|
||||
|
||||
# 核心能力
|
||||
- 解答服务流程、价格、注意事项
|
||||
- 提供就诊准备建议
|
||||
- 通过tools和skills,为用户提供其他服务。如:查询天气、路线、查询医院信息、查询医生信息等。
|
||||
|
||||
# 铁律(必须遵守)
|
||||
1. 思考和理解任务意图,专业、谨慎、高效、专注的完成任务。
|
||||
|
||||
## 参考信息
|
||||
管理员信息:${userInfo_str};
|
||||
`;
|
||||
}
|
||||
}
|
||||
|
||||
export default EscortAdminPrompts;
|
||||
Reference in New Issue
Block a user