@blocklet/pages-kit-agents 0.5.30 → 0.5.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,16 +2,16 @@ import { AIAgent } from '@aigne/core';
2
2
  export declare const contentReviewerAgent: AIAgent<{
3
3
  question: string;
4
4
  locale: string;
5
- dataSource: string;
6
5
  content: string;
6
+ dataSource: string;
7
7
  }, {
8
8
  result: {
9
9
  total_score: number;
10
10
  level: string;
11
11
  suggestions: string[];
12
12
  dimension_scores: {
13
- name: string;
14
13
  score: number;
14
+ name: string;
15
15
  maxScore: number;
16
16
  comment: string;
17
17
  }[];
@@ -5,6 +5,6 @@ export declare const generatePageMetadataAgent: AIAgent<{
5
5
  locale: string;
6
6
  sectionsData: string;
7
7
  }, {
8
- description: string;
9
8
  title: string;
9
+ description: string;
10
10
  }>;
@@ -29,10 +29,10 @@ export interface PageStructurePlannerOutput {
29
29
  }>;
30
30
  }
31
31
  export declare const pageStructurePlannerAgent: AIAgent<{
32
- outputSchema: string;
33
32
  context: string;
34
33
  question: string;
35
34
  locale: string;
35
+ outputSchema: string;
36
36
  expectedSections: string;
37
37
  initialStructurePlan: {
38
38
  sectionName: string;
@@ -9,9 +9,9 @@ export interface ValidatePageStructureInput {
9
9
  outputSchema: string;
10
10
  }
11
11
  export declare const pageStructureValidatorAgent: AIAgent<{
12
- outputSchema: string;
13
12
  context: string;
14
13
  question: string;
14
+ outputSchema: string;
15
15
  expectedSections: string;
16
16
  structurePlan: {
17
17
  sectionName: string;