agent-create.page.ts 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. import { Component, OnInit } from '@angular/core';
  2. import { Router } from '@angular/router';
  3. import { CloudObject, CloudQuery, CloudUser } from '../lib/ncloud';
  4. import { IonHeader, IonToolbar, IonTitle, IonContent, IonButton,IonIcon, ModalController, IonTextarea, IonInput, IonCard, IonCardHeader, IonCardTitle, IonThumbnail, IonCardContent, IonCardSubtitle, IonItem, IonList, IonLabel, IonAvatar, IonSelect, IonSelectOption, AlertController, IonButtons, IonProgressBar, IonText } from '@ionic/angular/standalone';
  5. import { CommonModule } from '@angular/common';
  6. import { AvatarModule, ChatPanelOptions, DalleOptions, FmodeChat, FmodeChatCompletion, FmodeChatMessage, ImagineWork, openChatPanelModal } from 'fmode-ng';
  7. @Component({
  8. selector: 'app-agent-create',
  9. templateUrl: './agent-create.page.html',
  10. styleUrls: ['./agent-create.page.scss'],
  11. standalone: true,
  12. imports: [
  13. IonHeader, IonToolbar, IonTitle, IonContent, IonButton,IonTextarea,IonInput,
  14. IonIcon,IonCard,IonCardHeader,IonCardTitle,
  15. IonCardSubtitle,IonCardContent, IonThumbnail, IonItem,IonList,CommonModule,IonLabel,
  16. IonAvatar, IonSelect, IonSelectOption,IonButtons,IonProgressBar,
  17. IonText, IonCardHeader, IonCardSubtitle,]
  18. })
  19. export class AgentCreatePage implements OnInit {
  20. currentUser: CloudUser;
  21. constructor(
  22. private modalCtrl:ModalController,
  23. private router:Router,
  24. private alertController: AlertController
  25. ) {
  26. this.currentUser = new CloudUser();
  27. // 示例任务,自己生成图片后请存储新的ID
  28. }
  29. images:Array<string> = []
  30. back:string = "<";
  31. backhome() {
  32. this.router.navigate(['/tab1']);
  33. }
  34. ngOnInit() {
  35. }
  36. name: string = ''
  37. nameInput(e:any) {
  38. this.name = e.detail.value;
  39. console.log(this.name);
  40. }
  41. age: number = 25
  42. ageInput(e:any) {
  43. this.age = e.detail.value;
  44. console.log(this.age);
  45. }
  46. gender: string = 'male'
  47. genderChange(e:any) {
  48. console.log('ionChange fired with value: ' + e.detail.value);
  49. this.gender = e.detail.value;
  50. }
  51. genderCancel(){
  52. }
  53. genderDismiss(){
  54. }
  55. // 描述
  56. desc: string = ''
  57. descInput(e:any) {
  58. this.desc = e.detail.value;
  59. console.log(this.desc);
  60. }
  61. PictureDescResult:string = `` // 画面描述结果
  62. // 创建医生
  63. async createAgent() {
  64. localStorage.setItem("company","E4KpGvTEto")
  65. let consult = new CloudObject("NovelCharacter")
  66. let now = new Date();
  67. let dateStr = `${now.getFullYear()}-${now.getMonth()+1}-${now.getDate()}`
  68. // 对象权限的精确指定
  69. let ACL:any = {
  70. "*":{read:true,write:true}
  71. }
  72. if(this.currentUser?.id){
  73. ACL[this.currentUser?.id] = {read:true,write:true}
  74. }
  75. let completion = new FmodeChatCompletion([
  76. {role:"system",content:""},
  77. ])
  78. completion.sendCompletion().subscribe((message:any)=>{
  79. // 打印消息体
  80. console.log(message.content)
  81. // 赋值消息内容给组件内属性
  82. this.PictureDescResult = message.content
  83. if(message?.complete){ // 判断message为完成状态,则设置isComplete为完成
  84. // 图片生成
  85. let PicturePrompt = ``
  86. let options:DalleOptions = {prompt:PicturePrompt}
  87. consult.set({
  88. name:`${this.name}`,
  89. age:`${this.age}`,
  90. gender:`${this.gender}`,
  91. desc:`${this.desc}`,
  92. user:this.currentUser.toPointer(),
  93. ACL:ACL,
  94. })
  95. consult.save();
  96. console.log(consult);
  97. }
  98. })
  99. }
  100. }