@dataclouder/ngx-agent-cards 0.1.104 → 0.2.1

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.104",
3
+ "version": "0.2.1",
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,13 @@ 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;
430
+ auditable?: IAuditable;
428
431
  voiceCloning?: VoiceCloning;
432
+ metaApp?: IAgentMetadata;
429
433
  }
430
434
  interface IAgentCardMeta extends IAgentCard {
431
435
  taken: any;
@@ -577,7 +581,8 @@ declare enum ContextType {
577
581
  Last3Messages = "Last3Messages",
578
582
  Last4Messages = "Last4Messages",
579
583
  LastUserAndPreviousAssistant = "LastUserAndPreviousAssistant",
580
- AllConversation = "AllConversation"
584
+ AllConversation = "AllConversation",
585
+ AllUserMessages = "AllUserMessages"
581
586
  }
582
587
  declare enum ConversationStatus {
583
588
  Ongoing = "ongoing",
@@ -595,6 +600,33 @@ interface IConversationSession {
595
600
  conversationAnalysis?: any;
596
601
  performanceEvaluation?: any;
597
602
  }
603
+ interface ICardRouteStep {
604
+ agentCard: {
605
+ id: string;
606
+ name: string;
607
+ description?: string;
608
+ imageUrl?: string;
609
+ };
610
+ name?: string;
611
+ description?: string;
612
+ passCondition?: {
613
+ type: 'score' | 'completion' | 'custom';
614
+ value?: any;
615
+ };
616
+ order: number;
617
+ }
618
+ interface ICardRoute {
619
+ _id?: string;
620
+ id?: string;
621
+ name: string;
622
+ description?: string;
623
+ steps: ICardRouteStep[];
624
+ isActive: boolean;
625
+ tags?: string[];
626
+ auditable?: IAuditable;
627
+ manageable?: IManageable;
628
+ assets?: IAssetable;
629
+ }
598
630
 
599
631
  declare class DefaultAgentCardsService extends EntityCommunicationService<IAgentCard> {
600
632
  private conversationCostService;
@@ -613,7 +645,6 @@ declare class DefaultAgentCardsService extends EntityCommunicationService<IAgent
613
645
  getAllConversationCards(): Promise<IAgentCard[]>;
614
646
  findFilteredAgentCards(paginator: FiltersConfig): Promise<IFilterQueryResponse<IAgentCard>>;
615
647
  findAgentCardByTitle(title: string): Promise<IAgentCard>;
616
- remove(id: string): Promise<void>;
617
648
  getConversationUserChatSettings(): Promise<ChatUserSettings>;
618
649
  getListModels(provider: string): Promise<ModelName[]>;
619
650
  translateConversation(currentLang: string, targetLang: string, id: string): Promise<ChatUserSettings>;
@@ -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,21 @@ 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;
987
+ private pendingPlayingHandler;
988
+ private pendingPlayingTarget;
947
989
  agentCard: _angular_core.WritableSignal<IAgentCard>;
990
+ isVideoPlaying: _angular_core.WritableSignal<boolean>;
948
991
  constructor();
949
992
  setAgentCard(card: IAgentCard): void;
950
- initializePlayer(videoPlayer: ElementRef<HTMLVideoElement>): void;
993
+ initializePlayer(videoPlayerA: ElementRef<HTMLVideoElement>, videoPlayerB: ElementRef<HTMLVideoElement>): void;
951
994
  setVideoSource(videoUrl: string): void;
952
995
  startConversation(defaultVideo?: string): void;
953
996
  playVideo(): void;
@@ -958,6 +1001,7 @@ declare class VideoPlayerNativeService implements OnDestroy {
958
1001
  ngOnDestroy(): void;
959
1002
  private onVideoEnded;
960
1003
  private playNextInQueue;
1004
+ private transitionToVideo;
961
1005
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<VideoPlayerNativeService, never>;
962
1006
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<VideoPlayerNativeService>;
963
1007
  }
@@ -1129,6 +1173,8 @@ declare class DCChatComponent implements OnInit, OnDestroy {
1129
1173
  private chatMonitorService;
1130
1174
  private conversationInfoService;
1131
1175
  private conversationFlowStateService;
1176
+ private dynamicFlowService;
1177
+ private agentCardStateService;
1132
1178
  private chatFooterComponent;
1133
1179
  chatUserSettings: ChatUserSettings | null;
1134
1180
  conversationSettings: IConversationSettings;
@@ -1145,6 +1191,7 @@ declare class DCChatComponent implements OnInit, OnDestroy {
1145
1191
  constructor();
1146
1192
  ngOnInit(): Promise<void>;
1147
1193
  ngOnDestroy(): void;
1194
+ checkPerformanceAnalysis(): Promise<void>;
1148
1195
  /**
1149
1196
  * Open chat settings dialog
1150
1197
  */
@@ -1181,10 +1228,7 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
1181
1228
  label: string;
1182
1229
  }[];
1183
1230
  agentTypeOptions: (string | EAgentType.None)[];
1184
- readonly storageSettings: _angular_core.InputSignal<StorageImageSettings>;
1185
1231
  readonly onSave: _angular_core.OutputEmitterRef<any>;
1186
- readonly onGoDetails: _angular_core.OutputEmitterRef<string>;
1187
- private getSettings;
1188
1232
  form: _angular_forms.FormGroup<{
1189
1233
  version: _angular_forms.FormControl<string>;
1190
1234
  id: _angular_forms.FormControl<string>;
@@ -1199,6 +1243,7 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
1199
1243
  conversationType: _angular_forms.FormControl<ConversationType$1>;
1200
1244
  autoStart: _angular_forms.FormControl<boolean>;
1201
1245
  userMustStart: _angular_forms.FormControl<boolean>;
1246
+ displayMode: _angular_forms.FormControl<string>;
1202
1247
  mainVoice: _angular_forms.FormGroup<any>;
1203
1248
  secondaryVoice: _angular_forms.FormGroup<any>;
1204
1249
  model: _angular_forms.FormGroup<{
@@ -1209,7 +1254,6 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
1209
1254
  }>;
1210
1255
  rules: FormArray<_angular_forms.FormControl<unknown>>;
1211
1256
  }>;
1212
- metaApp: _angular_forms.FormGroup<any>;
1213
1257
  accounts: FormArray<_angular_forms.FormControl<unknown>>;
1214
1258
  conversationFlow: _angular_forms.FormGroup<{
1215
1259
  goal: _dataclouder_ngx_agent_cards.SimpleAgentTaskFormGroup;
@@ -1223,6 +1267,7 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
1223
1267
  detectableStates: FormArray<_dataclouder_ngx_agent_cards.DynamicCriteriaFormGroup>;
1224
1268
  }>;
1225
1269
  performancePrompt: _angular_forms.FormControl<string>;
1270
+ enablePerformanceAnalysis: _angular_forms.FormControl<boolean>;
1226
1271
  maxTurns: _angular_forms.FormControl<number>;
1227
1272
  }>;
1228
1273
  manageable: _angular_forms.FormGroup<any>;
@@ -1252,11 +1297,12 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
1252
1297
  onFileUploaded(event: FileStorageData): void;
1253
1298
  deleteCard(): Promise<void>;
1254
1299
  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>;
1300
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DCAgentCardFormComponent, "dc-agent-form", never, {}, { "onSave": "onSave"; }, never, never, true, never>;
1256
1301
  }
1257
1302
 
1258
1303
  declare class AgentCardListComponent extends EntityBaseListV2Component<IAgentCard> implements OnInit {
1259
1304
  extraFilters: ICustomFilter[];
1305
+ persistenceKey: string;
1260
1306
  readonly showOptions: _angular_core.InputSignal<boolean>;
1261
1307
  readonly gridLayout: _angular_core.InputSignal<boolean>;
1262
1308
  readonly customGetButtons: _angular_core.InputSignal<(card: IAgentCard) => MenuItem[]>;
@@ -1271,40 +1317,65 @@ declare class AgentCardListComponent extends EntityBaseListV2Component<IAgentCar
1271
1317
  handleTableAction(actionEvent: OnActionEvent): void;
1272
1318
  handleAction(actionEvent: OnActionEvent): void;
1273
1319
  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>;
1320
+ 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
1321
  }
1276
1322
 
1277
- declare class DcAgentCardDetailsComponent implements OnInit, AfterViewInit, OnDestroy {
1323
+ declare class DcAgentCardConverseComponent implements OnInit, OnDestroy {
1278
1324
  private agentCardService;
1279
1325
  private route;
1280
1326
  private toastService;
1281
1327
  chatMonitorService: ChatMonitorService;
1282
1328
  private conversationFlowStateService;
1283
1329
  private userService;
1284
- private videoPlayerService;
1330
+ videoPlayerService: VideoPlayerNativeService;
1285
1331
  agentCardId: string;
1286
1332
  useNativePlayer: boolean;
1287
1333
  readonly onStartConversation: _angular_core.OutputEmitterRef<IAgentCard>;
1288
- videoPlayer: ElementRef<HTMLVideoElement> | undefined;
1334
+ videoPlayerA: _angular_core.Signal<ElementRef<HTMLVideoElement>>;
1335
+ videoPlayerB: _angular_core.Signal<ElementRef<HTMLVideoElement>>;
1289
1336
  agentCard: _angular_core.WritableSignal<IAgentCard>;
1290
1337
  showInfoLayer: _angular_core.WritableSignal<boolean>;
1338
+ isTransparent: _angular_core.Signal<boolean>;
1291
1339
  constructor();
1292
1340
  ngOnDestroy(): void;
1293
- ngAfterViewInit(): void;
1294
1341
  ngOnInit(): Promise<void>;
1295
1342
  private transformToLanguage;
1296
1343
  private _transformVoice;
1297
1344
  startConversation(): void;
1298
1345
  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>;
1346
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DcAgentCardConverseComponent, never>;
1347
+ 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>;
1348
+ }
1349
+
1350
+ declare class DcAgentCardDetailComponent extends EntityBaseDetailComponent<IAgentCard> {
1351
+ protected entityCommunicationService: DefaultAgentCardsService;
1352
+ readonly objectEntries: {
1353
+ <T>(o: {
1354
+ [s: string]: T;
1355
+ } | ArrayLike<T>): [string, T][];
1356
+ (o: {}): [string, any][];
1357
+ };
1358
+ readonly entityData: _angular_core.InputSignal<IAgentCard>;
1359
+ constructor();
1360
+ selectedMotion: _angular_core.WritableSignal<any>;
1361
+ videoDialogVisible: _angular_core.WritableSignal<boolean>;
1362
+ get characterData(): _dataclouder_ngx_agent_cards.CharacterCardData;
1363
+ get persona(): _dataclouder_ngx_agent_cards.Persona;
1364
+ get bannerUrl(): string | null;
1365
+ get motions(): any[];
1366
+ get learnableInfo(): any;
1367
+ openMotionVideo(motion: any): void;
1368
+ closeMotionVideo(): void;
1369
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DcAgentCardDetailComponent, never>;
1370
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DcAgentCardDetailComponent, "dc-agent-card-detail", never, { "entityData": { "alias": "entityData"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1301
1371
  }
1302
1372
 
1303
1373
  declare enum EventCard {
1304
1374
  Edit = "edit",
1305
1375
  Delete = "delete",
1306
1376
  Select = "select",
1307
- Clone = "clone"
1377
+ Clone = "clone",
1378
+ Preview = "preview"
1308
1379
  }
1309
1380
  declare class AgentCardUI implements OnInit {
1310
1381
  eventType: typeof EventCard;
@@ -1622,6 +1693,12 @@ declare class ConversationRulesComponent {
1622
1693
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConversationRulesComponent, "app-conversationRules", never, {}, {}, never, never, true, never>;
1623
1694
  }
1624
1695
 
1696
+ declare class CardRoutesComponent {
1697
+ static routes: _angular_router.Routes;
1698
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardRoutesComponent, never>;
1699
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardRoutesComponent, "app-card-routes", never, {}, {}, never, never, true, never>;
1700
+ }
1701
+
1625
1702
  declare class PromptPreviewComponent implements OnInit {
1626
1703
  private promptBuilder;
1627
1704
  messages: _angular_core.InputSignal<ChatMessage[]>;
@@ -1651,5 +1728,5 @@ declare class ChatEngineTestComponent {
1651
1728
 
1652
1729
  declare const AGENT_CARDS_STATE_SERVICE: InjectionToken<MasterStateService<IAgentCard>>;
1653
1730
 
1654
- 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 };
1655
- 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 };
1731
+ 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 };
1732
+ 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 };