agentic-ui-libs 0.3.0-beta.1 → 0.3.0-beta.12

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.
Files changed (57) hide show
  1. package/dist/assets/style.css +2603 -1
  2. package/dist/features/dashboard/Dashboard.d.ts.map +1 -1
  3. package/dist/features/dashboard/SectionControls.d.ts.map +1 -1
  4. package/dist/features/debug-logs/DebugPanel.d.ts.map +1 -1
  5. package/dist/features/debug-logs/components/DebugCard.d.ts.map +1 -1
  6. package/dist/features/debug-logs/services/TreeBuilder.d.ts.map +1 -1
  7. package/dist/features/debug-logs/types.d.ts +2 -1
  8. package/dist/features/debug-logs/types.d.ts.map +1 -1
  9. package/dist/features/prompt-editor/PromptEditor.d.ts +14 -0
  10. package/dist/features/prompt-editor/PromptEditor.d.ts.map +1 -0
  11. package/dist/features/prompt-editor/RefinePanel.d.ts +41 -0
  12. package/dist/features/prompt-editor/RefinePanel.d.ts.map +1 -0
  13. package/dist/features/prompt-editor/components/AddToolbar.d.ts +8 -0
  14. package/dist/features/prompt-editor/components/AddToolbar.d.ts.map +1 -0
  15. package/dist/features/prompt-editor/components/ChatMessage.d.ts +13 -0
  16. package/dist/features/prompt-editor/components/ChatMessage.d.ts.map +1 -0
  17. package/dist/features/prompt-editor/components/CodeEditor.d.ts +8 -0
  18. package/dist/features/prompt-editor/components/CodeEditor.d.ts.map +1 -0
  19. package/dist/features/prompt-editor/components/ContentBlock.d.ts +23 -0
  20. package/dist/features/prompt-editor/components/ContentBlock.d.ts.map +1 -0
  21. package/dist/features/prompt-editor/components/EditableContent.d.ts +16 -0
  22. package/dist/features/prompt-editor/components/EditableContent.d.ts.map +1 -0
  23. package/dist/features/prompt-editor/components/FormattingToolbar.d.ts +10 -0
  24. package/dist/features/prompt-editor/components/FormattingToolbar.d.ts.map +1 -0
  25. package/dist/features/prompt-editor/components/Header.d.ts +2 -0
  26. package/dist/features/prompt-editor/components/Header.d.ts.map +1 -0
  27. package/dist/features/prompt-editor/components/InsertMenu.d.ts +14 -0
  28. package/dist/features/prompt-editor/components/InsertMenu.d.ts.map +1 -0
  29. package/dist/features/prompt-editor/components/RefineDropdown.d.ts +14 -0
  30. package/dist/features/prompt-editor/components/RefineDropdown.d.ts.map +1 -0
  31. package/dist/features/prompt-editor/components/Section.d.ts +27 -0
  32. package/dist/features/prompt-editor/components/Section.d.ts.map +1 -0
  33. package/dist/features/prompt-editor/components/SectionHeader.d.ts +15 -0
  34. package/dist/features/prompt-editor/components/SectionHeader.d.ts.map +1 -0
  35. package/dist/features/prompt-editor/components/icons.d.ts +16 -0
  36. package/dist/features/prompt-editor/components/icons.d.ts.map +1 -0
  37. package/dist/features/prompt-editor/data/insertableItems.d.ts +17 -0
  38. package/dist/features/prompt-editor/data/insertableItems.d.ts.map +1 -0
  39. package/dist/features/prompt-editor/index.d.ts +19 -0
  40. package/dist/features/prompt-editor/index.d.ts.map +1 -0
  41. package/dist/features/prompt-editor/services/EditorUtils.d.ts +48 -0
  42. package/dist/features/prompt-editor/services/EditorUtils.d.ts.map +1 -0
  43. package/dist/features/prompt-editor/services/PromptApiService.d.ts +22 -0
  44. package/dist/features/prompt-editor/services/PromptApiService.d.ts.map +1 -0
  45. package/dist/features/prompt-editor/types.d.ts +101 -0
  46. package/dist/features/prompt-editor/types.d.ts.map +1 -0
  47. package/dist/index.d.ts +1 -0
  48. package/dist/index.d.ts.map +1 -1
  49. package/dist/index.js +31399 -19535
  50. package/dist/lib/dashboard-api.service.d.ts +1 -0
  51. package/dist/lib/dashboard-api.service.d.ts.map +1 -1
  52. package/dist/shared/ui/IconPreview.d.ts +2 -1
  53. package/dist/shared/ui/IconPreview.d.ts.map +1 -1
  54. package/dist/shared/ui/MultiSelect.d.ts +1 -1
  55. package/dist/shared/ui/MultiSelect.d.ts.map +1 -1
  56. package/dist/ui-libs.umd.js +42191 -296
  57. package/package.json +10 -1
@@ -0,0 +1,101 @@
1
+ export type FormatType = "editor" | "preview";
2
+ export type ContentBlock = {
3
+ id: string;
4
+ type: "text" | "subsection";
5
+ content: string;
6
+ listType?: "bulleted" | "numbered";
7
+ headingLevel?: 1 | 2 | 3;
8
+ children?: ContentBlock[];
9
+ };
10
+ export type SectionData = {
11
+ id: string;
12
+ title: string;
13
+ order: number;
14
+ activeFormat: FormatType;
15
+ content: ContentBlock[];
16
+ };
17
+ export interface PromptEditorProps {
18
+ value?: ContentBlock[];
19
+ markdownValue?: string;
20
+ onChange?: (value: ContentBlock[]) => void;
21
+ onMarkdownChange?: (markdown: string) => void;
22
+ title?: string;
23
+ onTitleChange?: (title: string) => void;
24
+ mode?: FormatType;
25
+ onModeChange?: (mode: FormatType) => void;
26
+ onRefine?: (context: RefineContext) => Promise<RefineResponse>;
27
+ className?: string;
28
+ readOnly?: boolean;
29
+ validateContent?: (blocks: ContentBlock[]) => boolean | string;
30
+ showHeader?: boolean;
31
+ suggestions?: InsertableItem[];
32
+ }
33
+ export interface InsertableItem {
34
+ id: string;
35
+ name: string;
36
+ displayName: string;
37
+ type: 'agent' | 'tool' | 'knowledge' | 'memory' | 'envVariable' | 'systemVariable';
38
+ }
39
+ export type RefinementMode = 'selection-only' | 'contextual-segment' | 'full-prompt' | 'smart-auto';
40
+ export interface RefineContext {
41
+ type: "whole" | "selection";
42
+ originalText: string;
43
+ instruction: string;
44
+ contentId?: string;
45
+ selectionRange?: {
46
+ start: number;
47
+ end: number;
48
+ };
49
+ conversationHistory?: Message[];
50
+ promptType?: string;
51
+ agentContext?: {
52
+ userId?: string;
53
+ accountId?: string;
54
+ appId?: string;
55
+ appName?: string;
56
+ agentName?: string;
57
+ variables?: Record<string, string>;
58
+ metadata?: Record<string, unknown>;
59
+ };
60
+ surroundingContext?: string;
61
+ fullPromptContext?: string;
62
+ refinementMode?: RefinementMode;
63
+ selectionStartIndex?: number;
64
+ selectionEndIndex?: number;
65
+ actionType?: string;
66
+ }
67
+ export interface RefineResponse {
68
+ refinedText: string;
69
+ conversationId?: string;
70
+ }
71
+ export interface PromptApiConfig {
72
+ baseUrl: string;
73
+ endpoint: string;
74
+ headers: Record<string, string>;
75
+ }
76
+ export interface Message {
77
+ role: 'user' | 'assistant';
78
+ content: string;
79
+ }
80
+ export interface RefineRequest {
81
+ originalText: string;
82
+ instruction: string;
83
+ conversationHistory?: Message[];
84
+ promptType?: string;
85
+ agentContext?: {
86
+ userId?: string;
87
+ accountId?: string;
88
+ appId?: string;
89
+ appName?: string;
90
+ agentName?: string;
91
+ variables?: Record<string, string>;
92
+ metadata?: Record<string, unknown>;
93
+ };
94
+ surroundingContext?: string;
95
+ fullPromptContext?: string;
96
+ refinementMode?: RefinementMode;
97
+ selectionStartIndex?: number;
98
+ selectionEndIndex?: number;
99
+ actionType?: string;
100
+ }
101
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/features/prompt-editor/types.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,SAAS,CAAC;AAE9C,MAAM,MAAM,YAAY,GAAG;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,GAAG,YAAY,CAAC;IAC5B,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,UAAU,GAAG,UAAU,CAAC;IACnC,YAAY,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACzB,QAAQ,CAAC,EAAE,YAAY,EAAE,CAAC;CAC3B,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,UAAU,CAAC;IACzB,OAAO,EAAE,YAAY,EAAE,CAAC;CACzB,CAAC;AAGF,MAAM,WAAW,iBAAiB;IAEhC,KAAK,CAAC,EAAE,YAAY,EAAE,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,YAAY,EAAE,KAAK,IAAI,CAAC;IAC3C,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,IAAI,CAAC;IAC1C,QAAQ,CAAC,EAAE,CAAC,OAAO,EAAE,aAAa,KAAK,OAAO,CAAC,cAAc,CAAC,CAAC;IAC/D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,eAAe,CAAC,EAAE,CAAC,MAAM,EAAE,YAAY,EAAE,KAAK,OAAO,GAAG,MAAM,CAAC;IAC/D,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,cAAc,EAAE,CAAC;CAChC;AAGD,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,OAAO,GAAG,MAAM,GAAG,WAAW,GAAG,QAAQ,GAAG,aAAa,GAAG,gBAAgB,CAAC;CACpF;AAED,MAAM,MAAM,cAAc,GAAG,gBAAgB,GAAG,oBAAoB,GAAG,aAAa,GAAG,YAAY,CAAC;AAEpG,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,OAAO,GAAG,WAAW,CAAC;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IAChD,mBAAmB,CAAC,EAAE,OAAO,EAAE,CAAC;IAChC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE;QACb,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QACnC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KACpC,CAAC;IACF,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,cAAc;IAC7B,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACjC;AAED,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,MAAM,GAAG,WAAW,CAAC;IAC3B,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,aAAa;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,mBAAmB,CAAC,EAAE,OAAO,EAAE,CAAC;IAChC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE;QACb,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QACnC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KACpC,CAAC;IACF,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB"}
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import './styles/globals.css';
2
2
  export * from './features/dashboard';
3
3
  export * from './features/debug-logs';
4
+ export * from './features/prompt-editor';
4
5
  export * from './shared/ui';
5
6
  export { Dashboard } from './features/dashboard/Dashboard';
6
7
  export { MetricCard } from './features/dashboard/MetricCard';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,sBAAsB,CAAC;AAW9B,cAAc,sBAAsB,CAAC;AAKrC,cAAc,uBAAuB,CAAC;AAGtC,cAAc,aAAa,CAAC;AAU5B,OAAO,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAC;AACrE,OAAO,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAC;AACrE,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAC7D,OAAO,EAAE,gBAAgB,EAAE,MAAM,uCAAuC,CAAC;AACzE,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AAKjE,OAAO,EAAE,UAAU,EAAE,MAAM,kCAAkC,CAAC;AAC9D,YAAY,EAAE,eAAe,EAAE,aAAa,EAAE,gBAAgB,EAAE,cAAc,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AAK1I,cAAc,aAAa,CAAC;AAG5B,OAAO,EAAE,eAAe,EAAE,MAAM,sCAAsC,CAAC;AAGvE,OAAO,EAAE,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AAChE,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AAGlE,YAAY,EAEV,SAAS,EACT,UAAU,EACV,SAAS,EAGT,WAAW,EACX,YAAY,EACZ,eAAe,EACf,aAAa,EAGb,WAAW,EACX,iBAAiB,EAGjB,UAAU,EACV,QAAQ,EAGR,cAAc,EACd,cAAc,EAGd,gBAAgB,IAAI,oBAAoB,EAGxC,eAAe,EACf,oBAAoB,EACpB,sBAAsB,EAGtB,cAAc,EACd,aAAa,EACb,gBAAgB,EAGhB,YAAY,EACZ,eAAe,EAGf,SAAS,EACT,UAAU,EACV,gBAAgB,EAChB,WAAW,EACX,mBAAmB,EACnB,SAAS,EACT,kBAAkB,EAClB,mBAAmB,EACpB,MAAM,gBAAgB,CAAC;AAGxB,YAAY,EACV,cAAc,EACd,eAAe,EAChB,MAAM,wBAAwB,CAAC;AAEhC,YAAY,EACV,iBAAiB,EACjB,gBAAgB,EACjB,MAAM,2BAA2B,CAAC;AAEnC,YAAY,EACV,kBAAkB,EACnB,MAAM,6BAA6B,CAAC;AAGrC,OAAO,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EAAE,uBAAuB,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AACnF,OAAO,EACL,yBAAyB,EACzB,gBAAgB,EAChB,yBAAyB,EAC1B,MAAM,2BAA2B,CAAC;AAGnC,OAAO,EACL,cAAc,EACd,WAAW,EACX,YAAY,EACZ,eAAe,EACf,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,EACjB,gBAAgB,EACjB,MAAM,sBAAsB,CAAC;AAG9B,OAAO,EAAE,EAAE,EAAE,MAAM,aAAa,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,sBAAsB,CAAC;AAW9B,cAAc,sBAAsB,CAAC;AAKrC,cAAc,uBAAuB,CAAC;AAGtC,cAAc,0BAA0B,CAAC;AAGzC,cAAc,aAAa,CAAC;AAU5B,OAAO,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAC;AACrE,OAAO,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAC;AACrE,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAC7D,OAAO,EAAE,gBAAgB,EAAE,MAAM,uCAAuC,CAAC;AACzE,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AAKjE,OAAO,EAAE,UAAU,EAAE,MAAM,kCAAkC,CAAC;AAC9D,YAAY,EAAE,eAAe,EAAE,aAAa,EAAE,gBAAgB,EAAE,cAAc,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AAK1I,cAAc,aAAa,CAAC;AAG5B,OAAO,EAAE,eAAe,EAAE,MAAM,sCAAsC,CAAC;AAGvE,OAAO,EAAE,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AAChE,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AAGlE,YAAY,EAEV,SAAS,EACT,UAAU,EACV,SAAS,EAGT,WAAW,EACX,YAAY,EACZ,eAAe,EACf,aAAa,EAGb,WAAW,EACX,iBAAiB,EAGjB,UAAU,EACV,QAAQ,EAGR,cAAc,EACd,cAAc,EAGd,gBAAgB,IAAI,oBAAoB,EAGxC,eAAe,EACf,oBAAoB,EACpB,sBAAsB,EAGtB,cAAc,EACd,aAAa,EACb,gBAAgB,EAGhB,YAAY,EACZ,eAAe,EAGf,SAAS,EACT,UAAU,EACV,gBAAgB,EAChB,WAAW,EACX,mBAAmB,EACnB,SAAS,EACT,kBAAkB,EAClB,mBAAmB,EACpB,MAAM,gBAAgB,CAAC;AAGxB,YAAY,EACV,cAAc,EACd,eAAe,EAChB,MAAM,wBAAwB,CAAC;AAEhC,YAAY,EACV,iBAAiB,EACjB,gBAAgB,EACjB,MAAM,2BAA2B,CAAC;AAEnC,YAAY,EACV,kBAAkB,EACnB,MAAM,6BAA6B,CAAC;AAGrC,OAAO,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EAAE,uBAAuB,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AACnF,OAAO,EACL,yBAAyB,EACzB,gBAAgB,EAChB,yBAAyB,EAC1B,MAAM,2BAA2B,CAAC;AAGnC,OAAO,EACL,cAAc,EACd,WAAW,EACX,YAAY,EACZ,eAAe,EACf,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,EACjB,gBAAgB,EACjB,MAAM,sBAAsB,CAAC;AAG9B,OAAO,EAAE,EAAE,EAAE,MAAM,aAAa,CAAC"}