|
@@ -43,6 +43,10 @@ export class CharacterDetailComponent implements OnInit {
|
|
|
onChatInit: (chat: FmodeChat) => {
|
|
|
// 设置智能体的名字为角色名称
|
|
|
chat.role.set("name", this.character.name);
|
|
|
+ let newAvatar = "https://nova-cloud.obs.cn-south-1.myhuaweicloud.com/storage/aigc/imagine/U6UU36FsN8-0.png?x-image-process=image/resize,m_fixed,w_300"
|
|
|
+ chat.role.set("avatar", newAvatar); // 设置角色头像
|
|
|
+ chat.role.set("desc", "新的角色简介");
|
|
|
+ console.log(chat.role?.toJSON()) // 查看角色数据,内部属性均可覆盖
|
|
|
|
|
|
// 决赛设定
|
|
|
chat.role.set("prompt", `你的名字是${this.character.name},你将作为${this.character.name}和用户聊天,
|
|
@@ -58,6 +62,8 @@ export class CharacterDetailComponent implements OnInit {
|
|
|
},
|
|
|
onChatSaved: (chat: FmodeChat) => {
|
|
|
console.log("onChatSaved",chat,chat?.chatSession,chat?.chatSession?.id);
|
|
|
+ // 在后端设置一张表,记录当前用户、对话角色,还有chatId为chat?.chatSession?.id
|
|
|
+ // 页面中加载历史对话表,循环时候,调用restoreChat()将存储的chatId传入,即可实现
|
|
|
},
|
|
|
};
|
|
|
openChatPanelModal(this.modalCtrl, chatOptions);
|