Browse Source

feat: charactor role set img fit

未来全栈 3 months ago
parent
commit
6f272c5ceb

+ 1 - 1
novel-app/src/app/character-creator/character-creator.page.html

@@ -38,7 +38,7 @@
       <div class="image-upload" (click)="fileInput.click()">
         <input type="file" #fileInput (change)="onFileSelected($event)" accept="image/*" style="display: none;" />
         <div class="image-preview" *ngIf="selectedImage">
-          <img [src]="selectedImage" alt="角色图片" />
+          <img style="height:200px;" [src]="selectedImage" alt="角色图片" />
         </div>
         <div class="upload-text" *ngIf="!selectedImage">
           点击上传图片

+ 6 - 0
novel-app/src/app/character-detail/character-detail.component.ts

@@ -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);