|
@@ -1,7 +1,7 @@
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
-import { IonHeader, IonToolbar, IonTitle, IonContent, IonButton, IonTextarea, IonInput, IonBackButton, IonButtons, IonCardContent, IonCardTitle, IonCardHeader, IonCard } from '@ionic/angular/standalone';
|
|
|
+import { IonHeader, IonToolbar, IonTitle, IonContent, IonButton, IonTextarea, IonInput, IonBackButton, IonButtons, IonCardContent, IonCardTitle, IonCardHeader, IonCard, IonCol, IonRow, IonLabel, IonGrid } from '@ionic/angular/standalone';
|
|
|
import { FmodeChatCompletion, MarkdownPreviewModule } from 'fmode-ng';
|
|
|
|
|
|
@Component({
|
|
@@ -13,7 +13,7 @@ import { FmodeChatCompletion, MarkdownPreviewModule } from 'fmode-ng';
|
|
|
CommonModule, // 确保 CommonModule 已经导入
|
|
|
FormsModule,
|
|
|
IonHeader, IonToolbar, IonTitle, IonContent, IonButton, IonTextarea, IonInput, IonBackButton, IonButtons,
|
|
|
- IonCardContent, IonCardTitle, IonCardHeader, IonCard,
|
|
|
+ IonCardContent, IonCardTitle, IonCardHeader, IonCard, IonCol, IonRow, IonLabel, IonGrid,
|
|
|
// 引入fm-markdown-preview组件模块
|
|
|
MarkdownPreviewModule
|
|
|
],
|
|
@@ -23,47 +23,60 @@ export class CharacterGeneratorPage implements OnInit {
|
|
|
constructor() { }
|
|
|
ngOnInit() { }
|
|
|
|
|
|
- // 用户输入提示词
|
|
|
- type: string = "东方玄幻";
|
|
|
- typeInput(ev: any) {
|
|
|
- this.type = ev.detail.value;
|
|
|
+ types = [
|
|
|
+ '重生', '都市', '穿越', '玄幻', '系统文', '搞笑轻松', '历史古代', '武侠', '奇幻仙侠', '修仙', '末日求生', '东方玄幻', '异能', '科幻末世', '规则怪谈', '悬疑脑洞', '异世大陆', '种田文', '悬疑推理', '无脑爽文', '战神赘婿', '克苏鲁', '穿书'
|
|
|
+ ];
|
|
|
+
|
|
|
+ selectedType: string = '重生';
|
|
|
+
|
|
|
+ selectType(type: string) {
|
|
|
+ this.selectedType = type;
|
|
|
}
|
|
|
|
|
|
- // 用户输入提示词
|
|
|
- userPrompt: string = "古代";
|
|
|
+ gender = [
|
|
|
+ '男', '女'
|
|
|
+ ];
|
|
|
+
|
|
|
+ selectedGender: string = '男'; // 修改默认值
|
|
|
+
|
|
|
+ selectGender(gender: string) {
|
|
|
+ this.selectedGender = gender;
|
|
|
+ }
|
|
|
+
|
|
|
+ userPrompt: string = "一个高中生,来自一个神秘的学校。";
|
|
|
promptInput(ev: any) {
|
|
|
this.userPrompt = ev.detail.value;
|
|
|
}
|
|
|
|
|
|
- // 属性:组件内用于展示消息内容的变量
|
|
|
responseMsg: any = "";
|
|
|
+ isComplete: boolean = false;
|
|
|
|
|
|
- // 方法:实例化completion对象,传入消息数组,并订阅生成的可观察对象。
|
|
|
- isComplete: boolean = false; // 定义完成状态属性,用来标记是否补全完成
|
|
|
sendMessage() {
|
|
|
console.log("create");
|
|
|
|
|
|
let PromptTemplate = `
|
|
|
- 您作为一名专业的${this.type}小说作者,请您根据用户提供的小说背景,给出多个人物设定。
|
|
|
- 以下是用户的口述:${this.userPrompt}
|
|
|
- `;
|
|
|
+ 您作为一名专业的${this.selectedType}小说作者,请您根据用户提供的期望描述,给出一个性别为${this.selectedGender}、符合${this.selectedType}类型特点的人物描述。
|
|
|
+ 以下是用户的期望描述:${this.userPrompt}
|
|
|
+ `;
|
|
|
+
|
|
|
+ // 添加系统角色提示
|
|
|
+ let systemPrompt = `
|
|
|
+ 你是一名专业的小说作者,擅长各种类型的小说创作。请根据用户提供的信息,生成一个符合特定类型特点的人物描述。
|
|
|
+ `;
|
|
|
|
|
|
let completion = new FmodeChatCompletion([
|
|
|
- { role: "system", content: "" },
|
|
|
+ { role: "system", content: systemPrompt },
|
|
|
{ role: "user", content: PromptTemplate }
|
|
|
]);
|
|
|
completion.sendCompletion().subscribe((message: any) => {
|
|
|
- // 打印消息体
|
|
|
console.log(message.content);
|
|
|
- // 赋值消息内容给组件内属性
|
|
|
this.responseMsg = message.content;
|
|
|
- if (message?.complete) { // 判断message为完成状态,则设置isComplete为完成
|
|
|
+ if (message?.complete) {
|
|
|
this.isComplete = true;
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
- // 复制到剪贴板
|
|
|
copyToClipboard() {
|
|
|
const textarea = document.createElement('textarea');
|
|
|
textarea.value = this.responseMsg;
|