@dataclouder/ngx-agent-cards 0.1.103 → 0.2.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataclouder/ngx-agent-cards",
3
- "version": "0.1.103",
3
+ "version": "0.2.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18.0.0",
6
6
  "@angular/core": ">=18.0.0",
@@ -1,11 +1,11 @@
1
- import { ImgStorageData, BasicStorage, AudioStorage, IAssetable, StorageImageSettings, FileStorageData } from '@dataclouder/ngx-cloud-storage';
1
+ import { ImgStorageData, BasicStorage, AudioStorage, IAssetable, FileStorageData } from '@dataclouder/ngx-cloud-storage';
2
2
  import { AudioEffectType, TTSRequest } from '@dataclouder/ngx-ai-services';
3
3
  import * as _dataclouder_ngx_core from '@dataclouder/ngx-core';
4
- import { ChatUserSettings, EModelQuality, IAuditable, IAIModel, IManageable, ILearnable, EntityCommunicationService, FiltersConfig, IFilterQueryResponse, HttpCoreService, EntityBaseFormComponent, EntityBaseListV2Component, ICustomFilter, PColumn, OnActionEvent, formatCamelCaseString } from '@dataclouder/ngx-core';
4
+ import { ChatUserSettings, EModelQuality, IAuditable, IAIModel, IManageable, ILearnable, EntityCommunicationService, FiltersConfig, IFilterQueryResponse, HttpCoreService, EntityBaseFormComponent, EntityBaseListV2Component, ICustomFilter, PColumn, OnActionEvent, EntityBaseDetailComponent, formatCamelCaseString } from '@dataclouder/ngx-core';
5
5
  import * as _angular_forms from '@angular/forms';
6
6
  import { FormGroup, FormControl, FormArray } from '@angular/forms';
7
7
  import * as _angular_core from '@angular/core';
8
- import { InjectionToken, Type, Provider, WritableSignal, Injector, Signal, OnDestroy, ElementRef, OnInit, AfterViewInit, TemplateRef, EventEmitter } from '@angular/core';
8
+ import { InjectionToken, Type, Provider, WritableSignal, Injector, Signal, OnDestroy, ElementRef, OnInit, TemplateRef, EventEmitter } from '@angular/core';
9
9
  import { UserService } from '@dataclouder/ngx-users';
10
10
  import * as rxjs from 'rxjs';
11
11
  import { MicSettings } from '@dataclouder/ngx-mic';
@@ -159,6 +159,7 @@ type ConversationFlowFormGroup = FormGroup<{
159
159
  detectableStates: FormArray<DynamicCriteriaFormGroup>;
160
160
  }>;
161
161
  performancePrompt: FormControl<string>;
162
+ enablePerformanceAnalysis: FormControl<boolean>;
162
163
  maxTurns: FormControl<number>;
163
164
  }>;
164
165
  type ConversationSettingsFormGroup = FormGroup<{
@@ -274,6 +275,7 @@ interface IConversationSettings {
274
275
  model?: IAIModel;
275
276
  rules?: IConversationRule[];
276
277
  textEngine?: TextEngines;
278
+ displayMode?: null | 'chat' | 'immersive' | 'transparent';
277
279
  conversationType?: ConversationType$1;
278
280
  autoStart?: boolean;
279
281
  userMustStart?: boolean;
@@ -368,6 +370,7 @@ interface IConversationFlow {
368
370
  dynamicConditions?: IDynamicCondition[];
369
371
  moodState?: IMoodState;
370
372
  performancePrompt?: string;
373
+ enablePerformanceAnalysis?: boolean;
371
374
  maxTurns?: number;
372
375
  }
373
376
  interface IChallengeState {
@@ -420,12 +423,12 @@ interface IAgentCard {
420
423
  assets?: IAssetable;
421
424
  characterCard?: ICharacterCardDC;
422
425
  conversationSettings?: IConversationSettings;
423
- metaApp?: IAgentMetadata;
424
426
  accounts?: Array<IAccounts>;
425
427
  conversationFlow?: IConversationFlow;
426
428
  manageable?: IManageable;
427
429
  learnable?: ILearnable;
428
430
  voiceCloning?: VoiceCloning;
431
+ metaApp?: IAgentMetadata;
429
432
  }
430
433
  interface IAgentCardMeta extends IAgentCard {
431
434
  taken: any;
@@ -577,7 +580,8 @@ declare enum ContextType {
577
580
  Last3Messages = "Last3Messages",
578
581
  Last4Messages = "Last4Messages",
579
582
  LastUserAndPreviousAssistant = "LastUserAndPreviousAssistant",
580
- AllConversation = "AllConversation"
583
+ AllConversation = "AllConversation",
584
+ AllUserMessages = "AllUserMessages"
581
585
  }
582
586
  declare enum ConversationStatus {
583
587
  Ongoing = "ongoing",
@@ -595,6 +599,33 @@ interface IConversationSession {
595
599
  conversationAnalysis?: any;
596
600
  performanceEvaluation?: any;
597
601
  }
602
+ interface ICardRouteStep {
603
+ agentCard: {
604
+ id: string;
605
+ name: string;
606
+ description?: string;
607
+ imageUrl?: string;
608
+ };
609
+ name?: string;
610
+ description?: string;
611
+ passCondition?: {
612
+ type: 'score' | 'completion' | 'custom';
613
+ value?: any;
614
+ };
615
+ order: number;
616
+ }
617
+ interface ICardRoute {
618
+ _id?: string;
619
+ id?: string;
620
+ name: string;
621
+ description?: string;
622
+ steps: ICardRouteStep[];
623
+ isActive: boolean;
624
+ tags?: string[];
625
+ auditable?: IAuditable;
626
+ manageable?: IManageable;
627
+ assets?: IAssetable;
628
+ }
598
629
 
599
630
  declare class DefaultAgentCardsService extends EntityCommunicationService<IAgentCard> {
600
631
  private conversationCostService;
@@ -705,6 +736,12 @@ declare class XKillsAgentCardsService extends DefaultAgentCardsService {
705
736
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<XKillsAgentCardsService>;
706
737
  }
707
738
 
739
+ declare class CardRouteService extends EntityCommunicationService<ICardRoute> {
740
+ constructor();
741
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardRouteService, never>;
742
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<CardRouteService>;
743
+ }
744
+
708
745
  interface WordData {
709
746
  word: string;
710
747
  index: number;
@@ -759,12 +796,9 @@ declare class PopupService {
759
796
  declare class DynamicFlowService {
760
797
  private messagesStateService;
761
798
  private conversationFlowStateService;
762
- /**
763
- * @description
764
- * A signal holding the static configuration (`IConversationFlow`) for the current chat.
765
- * This configuration defines the rules, goals, challenges, and conditions for the dynamic flow.
766
- */
767
- conversationFlowConfig: _angular_core.WritableSignal<IConversationFlow>;
799
+ private agentCardStateService;
800
+ /** Derived from AgentCardStateService — single source of truth for the conversation flow config. */
801
+ conversationFlowConfig: _angular_core.Signal<IConversationFlow>;
768
802
  /**
769
803
  * @description
770
804
  * A direct reference to the reactive state signal from `ConversationFlowStateService`.
@@ -829,9 +863,11 @@ declare class ContextEngineService {
829
863
  id: string;
830
864
  name: string;
831
865
  description?: string;
832
- }>(entity: T): any;
866
+ }>(_entity: T): any;
833
867
  getConversationContext(contextType: ContextType): string;
868
+ getAllUserMessages(): ChatMessage[];
834
869
  getContextMessages(contextType: ContextType): ChatMessage[];
870
+ private getConversationMessages;
835
871
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ContextEngineService, never>;
836
872
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<ContextEngineService>;
837
873
  }
@@ -940,14 +976,19 @@ declare class VideoPlayerService implements OnDestroy {
940
976
 
941
977
  declare class VideoPlayerNativeService implements OnDestroy {
942
978
  private conversationFlowStateService;
943
- private videoElement;
979
+ private videoA;
980
+ private videoB;
981
+ private activeVideo;
982
+ private inactiveVideo;
944
983
  private videoQueue;
945
984
  private defaultVideoUrl;
946
985
  private moodSubscription;
986
+ private onVideoEndedBound;
947
987
  agentCard: _angular_core.WritableSignal<IAgentCard>;
988
+ isVideoPlaying: _angular_core.WritableSignal<boolean>;
948
989
  constructor();
949
990
  setAgentCard(card: IAgentCard): void;
950
- initializePlayer(videoPlayer: ElementRef<HTMLVideoElement>): void;
991
+ initializePlayer(videoPlayerA: ElementRef<HTMLVideoElement>, videoPlayerB: ElementRef<HTMLVideoElement>): void;
951
992
  setVideoSource(videoUrl: string): void;
952
993
  startConversation(defaultVideo?: string): void;
953
994
  playVideo(): void;
@@ -958,6 +999,7 @@ declare class VideoPlayerNativeService implements OnDestroy {
958
999
  ngOnDestroy(): void;
959
1000
  private onVideoEnded;
960
1001
  private playNextInQueue;
1002
+ private transitionToVideo;
961
1003
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<VideoPlayerNativeService, never>;
962
1004
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<VideoPlayerNativeService>;
963
1005
  }
@@ -1129,6 +1171,8 @@ declare class DCChatComponent implements OnInit, OnDestroy {
1129
1171
  private chatMonitorService;
1130
1172
  private conversationInfoService;
1131
1173
  private conversationFlowStateService;
1174
+ private dynamicFlowService;
1175
+ private agentCardStateService;
1132
1176
  private chatFooterComponent;
1133
1177
  chatUserSettings: ChatUserSettings | null;
1134
1178
  conversationSettings: IConversationSettings;
@@ -1145,6 +1189,7 @@ declare class DCChatComponent implements OnInit, OnDestroy {
1145
1189
  constructor();
1146
1190
  ngOnInit(): Promise<void>;
1147
1191
  ngOnDestroy(): void;
1192
+ checkPerformanceAnalysis(): Promise<void>;
1148
1193
  /**
1149
1194
  * Open chat settings dialog
1150
1195
  */
@@ -1181,10 +1226,7 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
1181
1226
  label: string;
1182
1227
  }[];
1183
1228
  agentTypeOptions: (string | EAgentType.None)[];
1184
- readonly storageSettings: _angular_core.InputSignal<StorageImageSettings>;
1185
1229
  readonly onSave: _angular_core.OutputEmitterRef<any>;
1186
- readonly onGoDetails: _angular_core.OutputEmitterRef<string>;
1187
- private getSettings;
1188
1230
  form: _angular_forms.FormGroup<{
1189
1231
  version: _angular_forms.FormControl<string>;
1190
1232
  id: _angular_forms.FormControl<string>;
@@ -1199,6 +1241,7 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
1199
1241
  conversationType: _angular_forms.FormControl<ConversationType$1>;
1200
1242
  autoStart: _angular_forms.FormControl<boolean>;
1201
1243
  userMustStart: _angular_forms.FormControl<boolean>;
1244
+ displayMode: _angular_forms.FormControl<string>;
1202
1245
  mainVoice: _angular_forms.FormGroup<any>;
1203
1246
  secondaryVoice: _angular_forms.FormGroup<any>;
1204
1247
  model: _angular_forms.FormGroup<{
@@ -1209,7 +1252,6 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
1209
1252
  }>;
1210
1253
  rules: FormArray<_angular_forms.FormControl<unknown>>;
1211
1254
  }>;
1212
- metaApp: _angular_forms.FormGroup<any>;
1213
1255
  accounts: FormArray<_angular_forms.FormControl<unknown>>;
1214
1256
  conversationFlow: _angular_forms.FormGroup<{
1215
1257
  goal: _dataclouder_ngx_agent_cards.SimpleAgentTaskFormGroup;
@@ -1223,6 +1265,7 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
1223
1265
  detectableStates: FormArray<_dataclouder_ngx_agent_cards.DynamicCriteriaFormGroup>;
1224
1266
  }>;
1225
1267
  performancePrompt: _angular_forms.FormControl<string>;
1268
+ enablePerformanceAnalysis: _angular_forms.FormControl<boolean>;
1226
1269
  maxTurns: _angular_forms.FormControl<number>;
1227
1270
  }>;
1228
1271
  manageable: _angular_forms.FormGroup<any>;
@@ -1252,11 +1295,12 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
1252
1295
  onFileUploaded(event: FileStorageData): void;
1253
1296
  deleteCard(): Promise<void>;
1254
1297
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DCAgentCardFormComponent, never>;
1255
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DCAgentCardFormComponent, "dc-agent-form", never, { "storageSettings": { "alias": "storageSettings"; "required": false; "isSignal": true; }; }, { "onSave": "onSave"; "onGoDetails": "onGoDetails"; }, never, never, true, never>;
1298
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DCAgentCardFormComponent, "dc-agent-form", never, {}, { "onSave": "onSave"; }, never, never, true, never>;
1256
1299
  }
1257
1300
 
1258
1301
  declare class AgentCardListComponent extends EntityBaseListV2Component<IAgentCard> implements OnInit {
1259
1302
  extraFilters: ICustomFilter[];
1303
+ persistenceKey: string;
1260
1304
  readonly showOptions: _angular_core.InputSignal<boolean>;
1261
1305
  readonly gridLayout: _angular_core.InputSignal<boolean>;
1262
1306
  readonly customGetButtons: _angular_core.InputSignal<(card: IAgentCard) => MenuItem[]>;
@@ -1271,40 +1315,65 @@ declare class AgentCardListComponent extends EntityBaseListV2Component<IAgentCar
1271
1315
  handleTableAction(actionEvent: OnActionEvent): void;
1272
1316
  handleAction(actionEvent: OnActionEvent): void;
1273
1317
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AgentCardListComponent, never>;
1274
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AgentCardListComponent, "dc-agent-card-lists", never, { "extraFilters": { "alias": "extraFilters"; "required": false; }; "showOptions": { "alias": "showOptions"; "required": false; "isSignal": true; }; "gridLayout": { "alias": "gridLayout"; "required": false; "isSignal": true; }; "customGetButtons": { "alias": "customGetButtons"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1318
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AgentCardListComponent, "dc-agent-card-lists", never, { "extraFilters": { "alias": "extraFilters"; "required": false; }; "persistenceKey": { "alias": "persistenceKey"; "required": false; }; "showOptions": { "alias": "showOptions"; "required": false; "isSignal": true; }; "gridLayout": { "alias": "gridLayout"; "required": false; "isSignal": true; }; "customGetButtons": { "alias": "customGetButtons"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1275
1319
  }
1276
1320
 
1277
- declare class DcAgentCardDetailsComponent implements OnInit, AfterViewInit, OnDestroy {
1321
+ declare class DcAgentCardConverseComponent implements OnInit, OnDestroy {
1278
1322
  private agentCardService;
1279
1323
  private route;
1280
1324
  private toastService;
1281
1325
  chatMonitorService: ChatMonitorService;
1282
1326
  private conversationFlowStateService;
1283
1327
  private userService;
1284
- private videoPlayerService;
1328
+ videoPlayerService: VideoPlayerNativeService;
1285
1329
  agentCardId: string;
1286
1330
  useNativePlayer: boolean;
1287
1331
  readonly onStartConversation: _angular_core.OutputEmitterRef<IAgentCard>;
1288
- videoPlayer: ElementRef<HTMLVideoElement> | undefined;
1332
+ videoPlayerA: _angular_core.Signal<ElementRef<HTMLVideoElement>>;
1333
+ videoPlayerB: _angular_core.Signal<ElementRef<HTMLVideoElement>>;
1289
1334
  agentCard: _angular_core.WritableSignal<IAgentCard>;
1290
1335
  showInfoLayer: _angular_core.WritableSignal<boolean>;
1336
+ isTransparent: _angular_core.Signal<boolean>;
1291
1337
  constructor();
1292
1338
  ngOnDestroy(): void;
1293
- ngAfterViewInit(): void;
1294
1339
  ngOnInit(): Promise<void>;
1295
1340
  private transformToLanguage;
1296
1341
  private _transformVoice;
1297
1342
  startConversation(): void;
1298
1343
  toggleInfoLayer(): void;
1299
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DcAgentCardDetailsComponent, never>;
1300
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DcAgentCardDetailsComponent, "dc-agent-card-details", never, { "agentCardId": { "alias": "agentCardId"; "required": false; }; "useNativePlayer": { "alias": "useNativePlayer"; "required": false; }; }, { "onStartConversation": "onStartConversation"; }, never, never, true, never>;
1344
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DcAgentCardConverseComponent, never>;
1345
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DcAgentCardConverseComponent, "dc-agent-card-converse", never, { "agentCardId": { "alias": "agentCardId"; "required": false; }; "useNativePlayer": { "alias": "useNativePlayer"; "required": false; }; }, { "onStartConversation": "onStartConversation"; }, never, never, true, never>;
1346
+ }
1347
+
1348
+ declare class DcAgentCardDetailComponent extends EntityBaseDetailComponent<IAgentCard> {
1349
+ protected entityCommunicationService: DefaultAgentCardsService;
1350
+ readonly objectEntries: {
1351
+ <T>(o: {
1352
+ [s: string]: T;
1353
+ } | ArrayLike<T>): [string, T][];
1354
+ (o: {}): [string, any][];
1355
+ };
1356
+ readonly entityData: _angular_core.InputSignal<IAgentCard>;
1357
+ constructor();
1358
+ selectedMotion: _angular_core.WritableSignal<any>;
1359
+ videoDialogVisible: _angular_core.WritableSignal<boolean>;
1360
+ get characterData(): _dataclouder_ngx_agent_cards.CharacterCardData;
1361
+ get persona(): _dataclouder_ngx_agent_cards.Persona;
1362
+ get bannerUrl(): string | null;
1363
+ get motions(): any[];
1364
+ get learnableInfo(): any;
1365
+ openMotionVideo(motion: any): void;
1366
+ closeMotionVideo(): void;
1367
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DcAgentCardDetailComponent, never>;
1368
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DcAgentCardDetailComponent, "dc-agent-card-detail", never, { "entityData": { "alias": "entityData"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1301
1369
  }
1302
1370
 
1303
1371
  declare enum EventCard {
1304
1372
  Edit = "edit",
1305
1373
  Delete = "delete",
1306
1374
  Select = "select",
1307
- Clone = "clone"
1375
+ Clone = "clone",
1376
+ Preview = "preview"
1308
1377
  }
1309
1378
  declare class AgentCardUI implements OnInit {
1310
1379
  eventType: typeof EventCard;
@@ -1405,7 +1474,11 @@ declare class MessageContentDisplayer implements OnDestroy {
1405
1474
  messageId: string;
1406
1475
  }>;
1407
1476
  wordWithMeta: _angular_core.WritableSignal<IWordMetadata[]>;
1477
+ private localAudioStatus;
1408
1478
  wordsWithMetaState: IWordMetadata[];
1479
+ private lastAudioUrl;
1480
+ private lastHasTranscription;
1481
+ private currentMessageId;
1409
1482
  private audioElement;
1410
1483
  private destroyRef;
1411
1484
  iconState: _angular_core.Signal<"pending" | "playing" | "finished" | "paused" | "loading" | "playable" | "idle">;
@@ -1618,6 +1691,12 @@ declare class ConversationRulesComponent {
1618
1691
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConversationRulesComponent, "app-conversationRules", never, {}, {}, never, never, true, never>;
1619
1692
  }
1620
1693
 
1694
+ declare class CardRoutesComponent {
1695
+ static routes: _angular_router.Routes;
1696
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardRoutesComponent, never>;
1697
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardRoutesComponent, "app-card-routes", never, {}, {}, never, never, true, never>;
1698
+ }
1699
+
1621
1700
  declare class PromptPreviewComponent implements OnInit {
1622
1701
  private promptBuilder;
1623
1702
  messages: _angular_core.InputSignal<ChatMessage[]>;
@@ -1647,5 +1726,5 @@ declare class ChatEngineTestComponent {
1647
1726
 
1648
1727
  declare const AGENT_CARDS_STATE_SERVICE: InjectionToken<MasterStateService<IAgentCard>>;
1649
1728
 
1650
- export { ACCDataGenerationComponent, AGENT_CARDS_STATE_SERVICE, AIGenerationService, AgentCardListComponent, AgentCardUI, AgentCardsGenerationService, AudioService, AudioSpeed, BACKGROUND_SERVICE_TOKEN, CONVERSATION_AI_TOKEN, CardsCreatorComponent, ChatEngineTestComponent, ChatEventType, ChatMessage, ChatMessageOrchestratorComponent, ChatMonitorService, ChatRole, ConditionOperator, ConditionType, ContextEngineService, ContextType, ConversationDTO, ConversationEvents, ConversationFlowStateService, ConversationMessagesDTO, ConversationPromptBuilderService, ConversationRuleService, ConversationRulesComponent, ConversationStatus, ConversationType$1 as ConversationType, ConversationTypeOptions, DCAgentCardFormComponent, DCChatComponent, DCConversationUserChatSettingsComponent, DcAgentCardDetailsComponent, DefaultAgentCardsService, DoActionTypeOptions, DynamicFlowService, DynamicFlowTaskTypeOptions, EAccountsPlatform, EAgentType, EDoActionType, EDynamicFlowTaskType, EntityThen, EntityWhatOptions, EntityWhenOptions, EvalResultStringDefinition, GlobalToolsService, MessageContent, MessageContentDisplayer, MessagesStateService, ModelSelectorComponent, PopupService, PromptPreviewComponent, SectionType, SystemPromptType, TextEngineOptions, TextEngines, VIDEO_PLAYER_SERVICE_TOKEN, VideoPlayerNativeService, VideoPlayerService, VoiceTTSOption, VoiceTTSOptions, WordTimestamps, XKillsAgentCardsService, buildObjectTTSRequest, characterCardStringDataDefinition, convertToHTML, createAIModelFormGroup, defaultconvUserSettings, extractAudioAndTranscription, extractJsonFromResponse, getMoodStateLabelsAsString, getMoodStatePrompt, markdownToHtml, matchTranscription, provideAgentCardService, removeEmojis, removeEmojisAndSpecialCharacters, removeSpecialCharacters };
1651
- export type { Appearance, AudioGenerated, AudioStatus, BackgroundTask, CardTranslation, ChangePromptAction, CharacterCardData, ChatEvent, ConversationFlowFormGroup, ConversationSettingsFormGroup, DoAction, DoActionFormGroup, DynamicConditionFormGroup, DynamicCriteriaFormGroup, IAccounts, IAgentAssets, IAgentCard, IAgentCardMeta, IAgentMetadata, IAgentResponseDTO, IBackgroundService, IChallengeState, ICharacterCardDC, IConversationFlow, IConversationFlowState, IConversationSession, IConversationSettings, IConversationSettingsDTO, IDynamicCondition, IDynamicCriteria, IDynamicFlowTask, IGenerateConversationCardsDto, IGoalState, IMoodState, IMoodStateRuntime, IRule, ISimpleAgent, ITTS, IVideoPlayerService, IWordMetadata, ModelFormGroup, ModelName, MultiLanguage, Persona, SimpleAgentTask, SimpleAgentTaskFormGroup, SimpleEvalResult, TextHTMLTag, TranscriptionsWhisper, TriggerTasksFormGroup, VoiceCloning, VoiceTTS, WordData };
1729
+ export { ACCDataGenerationComponent, AGENT_CARDS_STATE_SERVICE, AIGenerationService, AgentCardListComponent, AgentCardUI, AgentCardsGenerationService, AudioService, AudioSpeed, BACKGROUND_SERVICE_TOKEN, CONVERSATION_AI_TOKEN, CardRouteService, CardRoutesComponent, CardsCreatorComponent, ChatEngineTestComponent, ChatEventType, ChatMessage, ChatMessageOrchestratorComponent, ChatMonitorService, ChatRole, ConditionOperator, ConditionType, ContextEngineService, ContextType, ConversationDTO, ConversationEvents, ConversationFlowStateService, ConversationMessagesDTO, ConversationPromptBuilderService, ConversationRuleService, ConversationRulesComponent, ConversationStatus, ConversationType$1 as ConversationType, ConversationTypeOptions, DCAgentCardFormComponent, DCChatComponent, DCConversationUserChatSettingsComponent, DcAgentCardConverseComponent, DcAgentCardDetailComponent, DefaultAgentCardsService, DoActionTypeOptions, DynamicFlowService, DynamicFlowTaskTypeOptions, EAccountsPlatform, EAgentType, EDoActionType, EDynamicFlowTaskType, EntityThen, EntityWhatOptions, EntityWhenOptions, EvalResultStringDefinition, GlobalToolsService, MessageContent, MessageContentDisplayer, MessagesStateService, ModelSelectorComponent, PopupService, PromptPreviewComponent, SectionType, SystemPromptType, TextEngineOptions, TextEngines, VIDEO_PLAYER_SERVICE_TOKEN, VideoPlayerNativeService, VideoPlayerService, VoiceTTSOption, VoiceTTSOptions, WordTimestamps, XKillsAgentCardsService, buildObjectTTSRequest, characterCardStringDataDefinition, convertToHTML, createAIModelFormGroup, defaultconvUserSettings, extractAudioAndTranscription, extractJsonFromResponse, getMoodStateLabelsAsString, getMoodStatePrompt, markdownToHtml, matchTranscription, provideAgentCardService, removeEmojis, removeEmojisAndSpecialCharacters, removeSpecialCharacters };
1730
+ export type { Appearance, AudioGenerated, AudioStatus, BackgroundTask, CardTranslation, ChangePromptAction, CharacterCardData, ChatEvent, ConversationFlowFormGroup, ConversationSettingsFormGroup, DoAction, DoActionFormGroup, DynamicConditionFormGroup, DynamicCriteriaFormGroup, IAccounts, IAgentAssets, IAgentCard, IAgentCardMeta, IAgentMetadata, IAgentResponseDTO, IBackgroundService, ICardRoute, ICardRouteStep, IChallengeState, ICharacterCardDC, IConversationFlow, IConversationFlowState, IConversationSession, IConversationSettings, IConversationSettingsDTO, IDynamicCondition, IDynamicCriteria, IDynamicFlowTask, IGenerateConversationCardsDto, IGoalState, IMoodState, IMoodStateRuntime, IRule, ISimpleAgent, ITTS, IVideoPlayerService, IWordMetadata, ModelFormGroup, ModelName, MultiLanguage, Persona, SimpleAgentTask, SimpleAgentTaskFormGroup, SimpleEvalResult, TextHTMLTag, TranscriptionsWhisper, TriggerTasksFormGroup, VoiceCloning, VoiceTTS, WordData };