Forráskód Böngészése

fix:update short novel

祝雨婧 3 hónapja
szülő
commit
ca625c00bb

+ 179 - 0
novel-app/docs-prod/IntelligentAgentCreation.md

@@ -0,0 +1,179 @@
+# 智能体创建模块 uml编写
+
+# 一、Scheema范式设计
+> 提示词 {系统描述} 如上述,请你帮我分析所需的Parse Schema范式表及具体的字段名称,表名大驼峰,字段小驼峰。可以用plantuml的类图来表示,各个表需要符合设计范式。注意外键关联使用Pointer<类名>这种方式表示。每张表默认有objectId唯一表示和createdAt创建时间。
+## 智能体创建模块
+- 模块描述
+用户表是_User表 
+用户可以创建智能体,智能体有智能体类型,智能体名称,智能体描述,智能体参数,智能体状态,智能体创建时间,智能体更新时间,智能体创建人等
+为了设计一个智能体创建模块的Parse Schema,我们需要创建一个用户表(`_User`)和一个智能体表(`Agent`)。根据你的要求,以下是所需的Parse Schema范式表及具体的字段名称。
+
+### 1. 用户表 (_User)
+`_User` 表是Parse的内置表,包含用户的基本信息。我们不需要在此表中添加额外字段。
+
+### 2. 智能体表 (Agent)
+我们将创建一个名为 `Agent` 的表,包含以下字段:
+
+- **objectId**: 唯一标识符(自动生成)
+- **createdAt**: 创建时间(自动生成)
+- **updatedAt**: 更新时间(自动生成)
+- **agentType**: 智能体类型 (String)
+- **agentName**: 智能体名称 (String)
+- **agentDescription**: 智能体描述 (String)
+- **agentParameters**: 智能体参数 (JSON或String)
+- **agentStatus**: 智能体状态 (String)
+- **creator**: 创建人 (Pointer<_User>) - 关联到用户表
+
+### PlantUML 类图表示
+
+以下是用PlantUML表示的类图:
+
+```plantuml
+@startuml
+class _User {
+    +objectId: String
+    +createdAt: Date
+    +updatedAt: Date
+    // 其他用户字段
+}
+
+class Agent {
+    +objectId: String
+    +createdAt: Date
+    +updatedAt: Date
+    +agentType: String
+    +agentName: String
+    +agentDescription: String
+    +agentParameters: String
+    +agentStatus: String
+    +creator: Pointer<_User>
+}
+
+_User "1" <-- "0..*" Agent : creates
+@enduml
+```
+
+### 设计范式分析
+1. **第一范式 (1NF)**: 所有字段都是原子值,没有重复的组。
+2. **第二范式 (2NF)**: 所有非主属性完全依赖于主键(`objectId`)。
+3. **第三范式 (3NF)**: 所有非主属性之间没有传递依赖。
+
+根据以上分析,`Agent` 表符合设计范式要求,能够有效地存储智能体的信息,并与用户表建立关联。
+# 二、业务逻辑描述
+# 小说角色智能体创建的完整逻辑
+## 创建逻辑
+- 用户在APP内,通过文本生成智能体,点击提交按钮,触发创建小说角色智能体的逻辑。
+  - 数据采集
+    - 用户输入智能体名称,智能体描述,智能体参数等数据。
+  - 文本生成
+    - 提示词: 智能体生成提示词
+  - 结果储存
+    - 将智能体的名称,描述,参数,状态,创建时间,创建人等数据存入数据库。
+> 提示词:{Agent表结构+Agent表描述} 请根据Agent表结构,生成一个JSON格式的Array数组测试数据。
+```json
+[
+    {
+        "objectId": "1",
+        "createdAt": "2024-12-01T10:00:00Z",
+        "updatedAt": "2024-12-01T10:00:00Z",
+        "agentType": "Novel Character",
+        "agentName": "勇敢的骑士",
+        "agentDescription": "一个勇敢的骑士,誓言保护王国,追寻荣耀与正义。",
+        "agentParameters": "{\"age\": 30, \"strength\": 85, \"intelligence\": 70, \"loyalty\": 90}",
+        "agentStatus": "active",
+        "creator": {
+            "__type": "Pointer",
+            "className": "_User",
+            "objectId": "user123"
+        }
+    },
+    {
+        "objectId": "2",
+        "createdAt": "2024-12-02T11:00:00Z",
+        "updatedAt": "2024-12-02T11:00:00Z",
+        "agentType": "Novel Character",
+        "agentName": "神秘的女巫",
+        "agentDescription": "一位拥有强大魔法的女巫,善于操控元素与时间。",
+        "agentParameters": "{\"age\": 250, \"powerLevel\": 95, \"wisdom\": 80}",
+        "agentStatus": "active",
+        "creator": {
+            "__type": "Pointer",
+            "className": "_User",
+            "objectId": "user456"
+        }
+    },
+    {
+        "objectId": "3",
+        "createdAt": "2024-12-03T12:00:00Z",
+        "updatedAt": "2024-12-03T12:00:00Z",
+        "agentType": "Novel Character",
+        "agentName": "狡猾的盗贼",
+        "agentDescription": "一个机智而狡猾的盗贼,擅长潜行与偷窃。",
+        "agentParameters": "{\"age\": 25, \"agility\": 90, \"stealth\": 95, \"charisma\": 70}",
+        "agentStatus": "inactive",
+        "creator": {
+            "__type": "Pointer",
+            "className": "_User",
+            "objectId": "user789"
+        }
+    },
+    {
+        "objectId": "4",
+        "createdAt": "2024-12-04T09:30:00Z",
+        "updatedAt": "2024-12-04T09:30:00Z",
+        "agentType": "Novel Character",
+        "agentName": "智慧的贤者",
+        "agentDescription": "一位智者,拥有无尽的知识与智慧,指导他人走向光明。",
+        "agentParameters": "{\"age\": 500, \"knowledge\": 100, \"patience\": 95}",
+        "agentStatus": "active",
+        "creator": {
+            "__type": "Pointer",
+            "className": "_User",
+            "objectId": "user321"
+        }
+    }
+]
+```
+# 智能体创建业务逻辑图例
+>提示词:{业务逻辑},您是一名专业的产品经理,请您将上述逻辑的每个过程,用plantuml的时序图表示出来。 
+以下是根据小说角色智能体创建的完整逻辑,用 PlantUML 表示的时序图。这个时序图展示了用户在 APP 内创建智能体的各个步骤,包括数据采集、文本生成和结果存储的过程。
+
+```plantuml
+@startuml
+actor User
+participant "APP" as App
+participant "Agent Service" as AgentService
+participant "Database" as Database
+
+User -> App : 输入智能体名称、描述、参数
+App -> User : 显示输入界面
+User -> App : 点击提交按钮
+App -> AgentService : 发送创建请求(名称、描述、参数)
+AgentService -> App : 生成提示词
+AgentService -> AgentService : 处理生成逻辑
+AgentService -> Database : 存储智能体数据(名称、描述、参数、状态、创建时间、创建人)
+Database -> AgentService : 返回存储结果
+AgentService -> App : 返回创建成功消息
+App -> User : 显示创建成功提示
+@enduml
+```
+
+### 说明
+1. **User**: 表示用户,与 APP 进行交互。
+2. **APP**: 表示应用程序,负责收集用户输入和显示信息。
+3. **Agent Service**: 处理智能体创建的逻辑,包括生成提示词和与数据库交互。
+4. **Database**: 存储智能体数据的数据库。
+
+### 流程步骤
+1. 用户在 APP 中输入智能体的名称、描述和参数。
+2. APP 显示输入界面,等待用户输入。
+3. 用户点击提交按钮,触发创建请求。
+4. APP 发送创建请求到 Agent Service,包含用户输入的数据。
+5. Agent Service 生成提示词,以帮助创建智能体。
+6. Agent Service 处理生成逻辑,准备存储数据。
+7. Agent Service 将智能体数据存储到数据库中。
+8. 数据库返回存储结果给 Agent Service。
+9. Agent Service 返回创建成功的消息给 APP。
+10. APP 向用户显示创建成功的提示。
+
+这个时序图清晰地展示了整个智能体创建过程中的交互和数据流动,有助于理解系统的工作逻辑。 

+ 1 - 0
novel-app/src/app/chat/README.md

@@ -0,0 +1 @@
+论坛界面

+ 6 - 0
novel-app/src/app/chat/chat.component.html

@@ -0,0 +1,6 @@
+<ion-header>
+  
+    <ion-title>论坛</ion-title>
+   
+</ion-header>
+

+ 0 - 0
novel-app/src/app/chat/chat.component.scss


+ 24 - 0
novel-app/src/app/chat/chat.component.spec.ts

@@ -0,0 +1,24 @@
+import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
+import { IonicModule } from '@ionic/angular';
+
+import { ChatComponent } from './chat.component';
+
+describe('ChatComponent', () => {
+  let component: ChatComponent;
+  let fixture: ComponentFixture<ChatComponent>;
+
+  beforeEach(waitForAsync(() => {
+    TestBed.configureTestingModule({
+      declarations: [ ChatComponent ],
+      imports: [IonicModule.forRoot()]
+    }).compileComponents();
+
+    fixture = TestBed.createComponent(ChatComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  }));
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 46 - 0
novel-app/src/app/chat/chat.component.ts

@@ -0,0 +1,46 @@
+import { CommonModule } from '@angular/common';
+import { IonHeader, IonToolbar, IonTitle, IonButtons, IonIcon, IonContent, IonicSlides, IonList, IonItem,IonButton } from '@ionic/angular/standalone';
+import { Component, OnInit } from '@angular/core';
+import { Router } from '@angular/router'; // 导入 Router
+import { IonCard, IonCardContent, IonCardHeader, IonInfiniteScroll, IonInfiniteScrollContent, IonicModule } from '@ionic/angular';
+
+@Component({
+  selector: 'app-chat',
+  templateUrl: './chat.component.html',
+  styleUrls: ['./chat.component.scss'],
+  standalone: true,
+  imports: [IonHeader,IonToolbar,IonTitle,IonButtons,IonIcon,IonContent,IonList,IonItem,IonicModule,CommonModule,IonButton]
+   
+})
+export class ChatComponent  implements OnInit {
+  posts = [
+    { id: 1, title: '帖子标题1', author: '作者1', date: '2024-12-01', likes: 10, comments: 5 },
+    { id: 2, title: '帖子标题2', author: '作者2', date: '2024-12-02', likes: 20, comments: 3 },
+    // 其他帖子...
+  ];
+  ngOnInit(): void {
+    // 初始化逻辑
+  }
+  constructor(private router: Router) {}
+
+  goToPostDetail(post: any) {
+    // 跳转到帖子详情页
+    this.router.navigate(['/post-detail', post.id]);
+  }
+
+  loadMorePosts(event: any) {
+    // 模拟加载更多帖子
+    setTimeout(() => {
+      const newPosts = [
+        { id: 3, title: '帖子标题3', author: '作者3', date: '2024-12-03', likes: 5, comments: 2 },
+        { id: 4, title: '帖子标题4', author: '作者4', date: '2024-12-04', likes: 15, comments: 8 },
+        // 更多帖子...
+      ];
+      this.posts.push(...newPosts);
+      event.target.complete();
+
+      // 如果没有更多数据,可以调用 event.target.disabled = true;
+    }, 500);
+  }
+
+}

+ 27 - 13
novel-app/src/app/forum/forum.page.html

@@ -1,17 +1,31 @@
-<ion-header [translucent]="true">
+<ion-header>
   <ion-toolbar>
-    <ion-title>
-      forum
-    </ion-title>
+    <ion-title>论坛帖子</ion-title>
+    <ion-searchbar placeholder="搜索帖子..." (ionInput)="filterPosts($event)"></ion-searchbar>
   </ion-toolbar>
 </ion-header>
 
-<ion-content [fullscreen]="true">
-  <ion-header collapse="condense">
-    <ion-toolbar>
-      <ion-title size="large">forum</ion-title>
-    </ion-toolbar>
-  </ion-header>
-
-  <app-explore-container name="forum page"></app-explore-container>
-</ion-content>
+<ion-content>
+  <ion-grid>
+    <ion-row class="ion-justify-content-center">
+      <ion-col size="12" size-md="6" *ngFor="let post of posts">
+        <ion-card (click)="openPostDetail(post)">
+          <ion-card-header>
+            <ion-card-title>{{ post.title }}</ion-card-title>
+            <ion-card-subtitle>作者: {{ post.author }} | 发布时间: {{ post.publishDate | date:'short' }}</ion-card-subtitle>
+          </ion-card-header>
+          <ion-card-content>
+            <p>点赞数: {{ post.likes }} | 评论数: {{ post.comments }}</p>
+          </ion-card-content>
+        </ion-card>
+      </ion-col>
+    </ion-row>
+    <div *ngIf="posts.length === 0">
+      <p>没有找到帖子。</p>
+    </div>
+  </ion-grid>
+  
+  <ion-infinite-scroll threshold="100px" (ionInfinite)="loadMorePosts($event)">
+    <ion-infinite-scroll-content loadingSpinner="bubbles" loadingText="加载更多..."></ion-infinite-scroll-content>
+  </ion-infinite-scroll>
+</ion-content>

+ 57 - 5
novel-app/src/app/forum/forum.page.ts

@@ -1,14 +1,66 @@
-import { Component } from '@angular/core';
-import { IonHeader, IonToolbar, IonTitle, IonContent } from '@ionic/angular/standalone';
-import { ExploreContainerComponent } from '../explore-container/explore-container.component';
+ import { CommonModule } from '@angular/common';
+  import { Component } from '@angular/core';
+import { InfiniteScrollCustomEvent, IonicModule } from '@ionic/angular';
+//import { IonCardSubtitle } from '@ionic/angular/standalone';
+
+// import { IonHeader, IonToolbar, IonTitle,IonCardHeader, IonContent,IonInfiniteScroll,IonCardContent, InfiniteScrollCustomEvent } from '@ionic/angular/standalone';
+// import { IonSearchbar } from '@ionic/angular/standalone/directives';
+// import { ExploreContainerComponent } from '../explore-container/explore-container.component';
 
 @Component({
   selector: 'app-forum',
   templateUrl: 'forum.page.html',
   styleUrls: ['forum.page.scss'],
   standalone: true,
-  imports: [IonHeader, IonToolbar, IonTitle, IonContent, ExploreContainerComponent],
+  imports: [CommonModule,IonicModule],
 })
+ //IonHeader,IonSearchbar, IonToolbar, IonTitle, IonContent, ExploreContainerComponent,IonInfiniteScroll,IonCardContent,IonCardHeader,
 export class ForumPage {
-  constructor() { }
+
+  posts: Array<{ title: string; author: string; publishDate: Date; likes: number; comments: number }> = [];
+  allPosts: Array<{ title: string; author: string; publishDate: Date; likes: number; comments: number }> = [];
+  pageSize: number = 10;
+  currentPage: number = 0;
+
+  constructor() {
+    // 假设这里是从服务获取的初始数据
+    this.allPosts = this.getPosts();
+    this.loadMorePosts();
+  }
+
+  ngOnInit() {}
+
+  getPosts() {
+    // 这里应该是调用API获取数据
+    return [
+      { title: '帖子1', author: '用户A', publishDate: new Date(), likes: 10, comments: 5 },
+      { title: '帖子2', author: '用户B', publishDate: new Date(), likes: 20, comments: 10 },
+      // 更多帖子...
+    ];
+  }
+
+  loadMorePosts(event?: InfiniteScrollCustomEvent) {
+    const nextPosts = this.allPosts.slice(this.currentPage * this.pageSize, (this.currentPage + 1) * this.pageSize);
+    console.log('加载的帖子:', nextPosts); // 检查加载的帖子
+    this.posts.push(...nextPosts);
+    console.log('当前帖子数量:', this.posts.length); // 确保帖子数量更新
+    this.currentPage++;
+  
+    if (event) {
+      event.target.complete();
+      if (nextPosts.length < this.pageSize) {
+        event.target.disabled = true; // 禁用无限滚动
+      }
+    }
+  }
+
+  filterPosts(event: any) {
+    const query = event.target.value.toLowerCase();
+    this.posts = this.allPosts.filter(post => post.title.toLowerCase().includes(query));
+    console.log('过滤后的帖子:', this.posts); // 检查过滤后的帖子
+  }
+  openPostDetail(post: any) {
+    // 在这里处理打开帖子详情的逻辑
+    console.log('打开帖子详情:', post);
+  }
 }

+ 0 - 1
novel-app/src/app/tabs/tabs.routes.ts

@@ -22,7 +22,6 @@ export const routes: Routes = [
           import('../person/person.page').then((m) => m.PersonPage),
       },
 
-
       {
         path: '',
         redirectTo: '/tabs/home',