|
@@ -57,10 +57,10 @@ export class ShortGeneratorPage implements OnInit {
|
|
|
}
|
|
|
|
|
|
// 用户输入提示词
|
|
|
- title: string = "";
|
|
|
+ titlel: string = "";
|
|
|
titleInput(ev: any) {
|
|
|
console.log(ev.detail.value);
|
|
|
- this.title = ev.detail.value;
|
|
|
+ this.titlel = ev.detail.value;
|
|
|
}
|
|
|
|
|
|
style: string = "玄幻";
|
|
@@ -72,10 +72,12 @@ export class ShortGeneratorPage implements OnInit {
|
|
|
// 人物词条
|
|
|
entryList: Array<any> = []
|
|
|
list: any = [];
|
|
|
+ entry: string = '';
|
|
|
onEntryListChange(ev: any) {
|
|
|
this.entryList = ev;
|
|
|
let list =JSON.stringify(this.entryList) ;
|
|
|
- console.log(list)
|
|
|
+ console.log(list);
|
|
|
+
|
|
|
}
|
|
|
|
|
|
showEntryList() {
|
|
@@ -96,12 +98,15 @@ export class ShortGeneratorPage implements OnInit {
|
|
|
|
|
|
sendMessage() {
|
|
|
console.log("create");
|
|
|
-
|
|
|
+ console.log(JSON.stringify(this.entryList));
|
|
|
+ console.log(this.titlel);
|
|
|
+ this.entry = JSON.stringify(this.entryList); // 将 entryList 转换为字符串并存储在 entry 中
|
|
|
+ console.log(this.entry); // 输出 entry 的值
|
|
|
let PromptTemplate = `
|
|
|
- 您作为一名专业的${this.style}作者,请您根据用户提供的标题${this.title},根据添加的词条${this.entryList},给出短篇小说大纲。
|
|
|
+ 您作为一名专业的${this.style}作者,请您根据用户提供的标题${this.titlel},根据这个词条${this.entry}的内容,添加文章信息,并给出短篇小说大纲。
|
|
|
|
|
|
`;
|
|
|
-
|
|
|
+ console.log(PromptTemplate);
|
|
|
let completion = new FmodeChatCompletion([
|
|
|
{ role: "system", content: "" },
|
|
|
{ role: "user", content: PromptTemplate }
|
|
@@ -167,7 +172,7 @@ export class ShortGeneratorPage implements OnInit {
|
|
|
// gender: `${this.gender}`,
|
|
|
// desc: `${this.desc}`,
|
|
|
// user: this.currentUser.toPointer(),
|
|
|
- title: `${this.title}`,
|
|
|
+ title: `${this.titlel}`,
|
|
|
topic: `${this.style}`,
|
|
|
content2: `${this.generatedContent}`,
|
|
|
date: dateStr,
|