@dataclouder/ngx-agent-cards 0.1.41 → 0.1.42
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/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ImgStorageData, CloudStorageData, IAssetable, StorageImageSettings } from '@dataclouder/ngx-cloud-storage';
|
|
2
2
|
import * as _dataclouder_ngx_core from '@dataclouder/ngx-core';
|
|
3
|
-
import { ChatUserSettings, EModelQuality, IAIModel, IManageable, EntityCommunicationService, FiltersConfig, IFilterQueryResponse, EntityBaseFormComponent, EntityBaseListComponent, ICustomFilter, PColumn, OnActionEvent } from '@dataclouder/ngx-core';
|
|
3
|
+
import { ChatUserSettings, EModelQuality, IAIModel, IManageable, EntityCommunicationService, FiltersConfig, IFilterQueryResponse, HttpCoreService, EntityBaseFormComponent, EntityBaseListComponent, ICustomFilter, PColumn, OnActionEvent } from '@dataclouder/ngx-core';
|
|
4
4
|
import * as _angular_forms from '@angular/forms';
|
|
5
5
|
import { FormGroup, FormControl, FormArray } from '@angular/forms';
|
|
6
6
|
import { AudioEffectType, TTSRequest } from '@dataclouder/ngx-vertex';
|
|
@@ -8,6 +8,8 @@ import * as _angular_core from '@angular/core';
|
|
|
8
8
|
import { InjectionToken, Type, Provider, WritableSignal, Injector, Signal, OnInit, OnDestroy, TemplateRef } from '@angular/core';
|
|
9
9
|
import { MicSettings } from '@dataclouder/ngx-mic';
|
|
10
10
|
import * as _dataclouder_ngx_agent_cards from '@dataclouder/ngx-agent-cards';
|
|
11
|
+
import * as _dataclouder_ngx_knowledge from '@dataclouder/ngx-knowledge';
|
|
12
|
+
import { MasterStateService } from '@dataclouder/ngx-knowledge';
|
|
11
13
|
import { MenuItem } from 'primeng/api';
|
|
12
14
|
import { UserService } from '@dataclouder/ngx-users';
|
|
13
15
|
|
|
@@ -137,6 +139,7 @@ type ConversationFlowFormGroup = FormGroup<{
|
|
|
137
139
|
challenges: FormArray<DynamicCriteriaFormGroup>;
|
|
138
140
|
tools: FormArray<DynamicCriteriaFormGroup>;
|
|
139
141
|
dynamicConditions: FormArray<DynamicConditionFormGroup>;
|
|
142
|
+
moodStateEnabled: FormControl<boolean>;
|
|
140
143
|
}>;
|
|
141
144
|
type ConversationSettingsFormGroup = FormGroup<{
|
|
142
145
|
textEngine: FormControl<TextEngines>;
|
|
@@ -219,6 +222,7 @@ interface IConversationSettings {
|
|
|
219
222
|
}
|
|
220
223
|
type IConversationSettingsDTO = Partial<IConversationSettings> & {
|
|
221
224
|
returnJson?: boolean;
|
|
225
|
+
type?: string;
|
|
222
226
|
};
|
|
223
227
|
interface IAgentResponseDTO {
|
|
224
228
|
role: ChatRole;
|
|
@@ -289,6 +293,7 @@ interface IConversationFlow {
|
|
|
289
293
|
triggerTasks: Partial<Record<ConversationEvents, IDynamicFlowTask>>;
|
|
290
294
|
challenges?: IDynamicCriteria[];
|
|
291
295
|
dynamicConditions: IDynamicCondition[];
|
|
296
|
+
moodStateEnabled: boolean;
|
|
292
297
|
}
|
|
293
298
|
declare enum EAgentType {
|
|
294
299
|
None,
|
|
@@ -449,6 +454,7 @@ declare enum ContextType {
|
|
|
449
454
|
|
|
450
455
|
declare class DefaultAgentCardsService extends EntityCommunicationService<IAgentCard> {
|
|
451
456
|
private conversationCostService;
|
|
457
|
+
randomSeed: number;
|
|
452
458
|
constructor();
|
|
453
459
|
partialUpdateAgentCard(agentCard: IAgentCard): Promise<IAgentCard>;
|
|
454
460
|
generateMainImage(idCard: string): Promise<any>;
|
|
@@ -475,6 +481,9 @@ declare function provideAgentCardService(serviceImplementation: Type<DefaultAgen
|
|
|
475
481
|
|
|
476
482
|
declare function extractJsonFromResponse(content: string): any;
|
|
477
483
|
|
|
484
|
+
/**
|
|
485
|
+
* @deprecated use userService directly instead
|
|
486
|
+
*/
|
|
478
487
|
interface UserDataExchange {
|
|
479
488
|
imgUrl: string;
|
|
480
489
|
name: string;
|
|
@@ -483,8 +492,17 @@ interface UserDataExchange {
|
|
|
483
492
|
baseLang?: string;
|
|
484
493
|
targetLang?: string;
|
|
485
494
|
}
|
|
495
|
+
/**
|
|
496
|
+
* @deprecated use userService directly instead
|
|
497
|
+
*/
|
|
486
498
|
declare const USER_DATA_EXCHANGE: InjectionToken<UserDataExchangeAbstractService>;
|
|
499
|
+
/**
|
|
500
|
+
* @deprecated use userService directly instead
|
|
501
|
+
*/
|
|
487
502
|
declare function provideUserDataExchange(serviceImplementation: Type<UserDataExchangeAbstractService>): Provider[];
|
|
503
|
+
/**
|
|
504
|
+
* @deprecated use userService directly instead
|
|
505
|
+
*/
|
|
488
506
|
declare abstract class UserDataExchangeAbstractService {
|
|
489
507
|
abstract getUserDataExchange(): UserDataExchange;
|
|
490
508
|
abstract getUserDataDescriptions(): {
|
|
@@ -537,6 +555,7 @@ declare class AudioService {
|
|
|
537
555
|
|
|
538
556
|
declare class ConversationPromptBuilderService {
|
|
539
557
|
private userDataExchange;
|
|
558
|
+
private userService;
|
|
540
559
|
buildConversationSettings(agentCard: IAgentCard, parseDict?: {
|
|
541
560
|
[key: string]: string;
|
|
542
561
|
}): IConversationSettings;
|
|
@@ -667,6 +686,26 @@ declare class AIGenerationService {
|
|
|
667
686
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AIGenerationService>;
|
|
668
687
|
}
|
|
669
688
|
|
|
689
|
+
interface IGenerateConversationCardsDto {
|
|
690
|
+
idea: string;
|
|
691
|
+
langCode?: string;
|
|
692
|
+
numCards?: number;
|
|
693
|
+
}
|
|
694
|
+
declare class AgentCardsGenerationService {
|
|
695
|
+
private httpService;
|
|
696
|
+
constructor(httpService: HttpCoreService);
|
|
697
|
+
generateConversationCard(idea: string, targetLang: string): Promise<any>;
|
|
698
|
+
generateIdeasConversationCards(options: IGenerateConversationCardsDto & {
|
|
699
|
+
language: string;
|
|
700
|
+
}): Promise<any>;
|
|
701
|
+
completePendingCards(): Promise<any>;
|
|
702
|
+
generateImagePendingConversationCards(): Promise<any>;
|
|
703
|
+
generateImageForCard(id: string): Promise<any>;
|
|
704
|
+
generateMissingDataConversationCards(id: string): Promise<any>;
|
|
705
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AgentCardsGenerationService, never>;
|
|
706
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AgentCardsGenerationService>;
|
|
707
|
+
}
|
|
708
|
+
|
|
670
709
|
type EvaluationLevel = 1 | 2 | 3 | 4 | 5;
|
|
671
710
|
type CommunicationLevel = 'Beginner' | 'Intermediate' | 'Advanced' | 'Native-like';
|
|
672
711
|
type DominantRegister = 'formal' | 'informal' | 'mixed';
|
|
@@ -721,7 +760,7 @@ declare class EvaluationService {
|
|
|
721
760
|
private evaluationResultSignal;
|
|
722
761
|
isGoalCompleted: _angular_core.WritableSignal<boolean>;
|
|
723
762
|
evaluateGoal(goalTask: IDynamicFlowTask): Promise<any>;
|
|
724
|
-
evaluateConversation(task: SimpleAgentTask, contextType?: ContextType): Promise<IEvaluationResponse>;
|
|
763
|
+
evaluateConversation(task: SimpleAgentTask, contextType?: ContextType, metaType?: string): Promise<IEvaluationResponse>;
|
|
725
764
|
/**
|
|
726
765
|
* Diference with evaluateConversation is task is already processed here.
|
|
727
766
|
* Evaluates a conversation context based on a specific task and attaches the result to a designated message.
|
|
@@ -837,8 +876,14 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
|
|
|
837
876
|
challenges: FormArray<_dataclouder_ngx_agent_cards.DynamicCriteriaFormGroup>;
|
|
838
877
|
tools: FormArray<_dataclouder_ngx_agent_cards.DynamicCriteriaFormGroup>;
|
|
839
878
|
dynamicConditions: FormArray<_dataclouder_ngx_agent_cards.DynamicConditionFormGroup>;
|
|
879
|
+
moodStateEnabled: _angular_forms.FormControl<boolean>;
|
|
840
880
|
}>;
|
|
841
881
|
manageable: FormGroup<any>;
|
|
882
|
+
learnable: FormGroup<{
|
|
883
|
+
level: _angular_forms.FormControl<number | null>;
|
|
884
|
+
takenCount: _angular_forms.FormControl<number | null>;
|
|
885
|
+
tags: FormArray<_angular_forms.FormControl<string | null>>;
|
|
886
|
+
}>;
|
|
842
887
|
}>;
|
|
843
888
|
protected patchForm(agentCard: IAgentCard): void;
|
|
844
889
|
save(): Promise<IAgentCard | undefined>;
|
|
@@ -855,6 +900,7 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
|
|
|
855
900
|
assets: Partial<IAssetable>;
|
|
856
901
|
}): void;
|
|
857
902
|
onAssetsChange(event: IAssetable): void;
|
|
903
|
+
goToCardsCreator(): void;
|
|
858
904
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DCAgentCardFormComponent, never>;
|
|
859
905
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DCAgentCardFormComponent, "dc-agent-form", never, { "storageSettings": { "alias": "storageSettings"; "required": false; "isSignal": true; }; }, { "onSave": "onSave"; "onGoDetails": "onGoDetails"; "onTranslate": "onTranslate"; }, never, never, true, never>;
|
|
860
906
|
}
|
|
@@ -864,15 +910,15 @@ declare class AgentCardListComponent extends EntityBaseListComponent<IAgentCard>
|
|
|
864
910
|
readonly showOptions: _angular_core.InputSignal<boolean>;
|
|
865
911
|
readonly gridLayout: _angular_core.InputSignal<boolean>;
|
|
866
912
|
readonly customGetButtons: _angular_core.InputSignal<(card: IAgentCard) => MenuItem[]>;
|
|
913
|
+
readonly agentCardsMasterStateService: _dataclouder_ngx_knowledge.MasterStateService<IAgentCard>;
|
|
914
|
+
userService: UserService;
|
|
867
915
|
protected entityCommunicationService: DefaultAgentCardsService;
|
|
868
|
-
private toastService;
|
|
869
916
|
columns: PColumn[];
|
|
870
917
|
customFilters: ICustomFilter[];
|
|
871
918
|
constructor();
|
|
872
919
|
getCustomButtons(item: IAgentCard): MenuItem[];
|
|
873
920
|
ngOnInit(): Promise<void>;
|
|
874
921
|
handleTableAction(actionEvent: OnActionEvent): void;
|
|
875
|
-
getCardMeta(card: IAgentCard): IAgentCardMeta;
|
|
876
922
|
handleAction(actionEvent: OnActionEvent): void;
|
|
877
923
|
applyFilterBarEvent(filterEvent: OnActionEvent): void;
|
|
878
924
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AgentCardListComponent, never>;
|
|
@@ -904,13 +950,16 @@ declare enum EventCard {
|
|
|
904
950
|
}
|
|
905
951
|
declare class AgentCardUI implements OnInit {
|
|
906
952
|
eventType: typeof EventCard;
|
|
953
|
+
isTaken: _angular_core.WritableSignal<boolean>;
|
|
907
954
|
userService: UserService;
|
|
908
955
|
speedDialModel: MenuItem[];
|
|
909
956
|
ngOnInit(): void;
|
|
910
957
|
readonly card: _angular_core.InputSignal<IAgentCard>;
|
|
911
958
|
readonly showOptions: _angular_core.InputSignal<boolean>;
|
|
912
959
|
readonly onAction: _angular_core.OutputEmitterRef<OnActionEvent>;
|
|
960
|
+
readonly agentCardsMasterStateService: _dataclouder_ngx_knowledge.MasterStateService<IAgentCard>;
|
|
913
961
|
eventCard(eventType: EventCard): void;
|
|
962
|
+
getTaken(): Promise<void>;
|
|
914
963
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AgentCardUI, never>;
|
|
915
964
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AgentCardUI, "dc-agent-card-ui", never, { "card": { "alias": "card"; "required": false; "isSignal": true; }; "showOptions": { "alias": "showOptions"; "required": false; "isSignal": true; }; }, { "onAction": "onAction"; }, never, never, true, never>;
|
|
916
965
|
}
|
|
@@ -976,10 +1025,12 @@ interface IWordMetadata {
|
|
|
976
1025
|
index: number;
|
|
977
1026
|
isHighlighted?: boolean;
|
|
978
1027
|
tag?: string;
|
|
1028
|
+
marked?: boolean;
|
|
979
1029
|
}
|
|
980
1030
|
type AudioState = 'idle' | 'playing' | 'paused' | 'loading' | 'playable';
|
|
981
1031
|
declare class MessageContentDisplayer implements OnDestroy {
|
|
982
1032
|
message: _angular_core.InputSignal<MessageContent>;
|
|
1033
|
+
markWord: _angular_core.InputSignal<string>;
|
|
983
1034
|
readonly playAudio: _angular_core.OutputEmitterRef<MessageContent>;
|
|
984
1035
|
readonly audioCompleted: _angular_core.OutputEmitterRef<MessageContent>;
|
|
985
1036
|
readonly wordClicked: _angular_core.OutputEmitterRef<{
|
|
@@ -989,23 +1040,21 @@ declare class MessageContentDisplayer implements OnDestroy {
|
|
|
989
1040
|
}>;
|
|
990
1041
|
wordWithMeta: _angular_core.WritableSignal<IWordMetadata[]>;
|
|
991
1042
|
audioState: _angular_core.WritableSignal<AudioState>;
|
|
992
|
-
alreadyPlayed: boolean
|
|
1043
|
+
alreadyPlayed: _angular_core.WritableSignal<boolean>;
|
|
993
1044
|
wordsWithMetaState: IWordMetadata[];
|
|
1045
|
+
private audioElement;
|
|
1046
|
+
private destroyRef;
|
|
994
1047
|
iconState: _angular_core.Signal<"paused" | "idle" | "playing" | "loading" | "playable">;
|
|
995
1048
|
shouldPlayAudio: _angular_core.Signal<boolean>;
|
|
996
1049
|
messageText: _angular_core.Signal<string>;
|
|
997
1050
|
classTag: _angular_core.Signal<string>;
|
|
998
1051
|
hasTranscription: _angular_core.Signal<boolean>;
|
|
999
|
-
private audioElement;
|
|
1000
|
-
private destroy$;
|
|
1001
|
-
private destroyRef;
|
|
1002
1052
|
constructor();
|
|
1003
1053
|
trackByIndex(index: number, item: any): number;
|
|
1004
1054
|
ngOnDestroy(): void;
|
|
1005
1055
|
private initializeBasedOnMessage;
|
|
1006
1056
|
private initializeAudio;
|
|
1007
|
-
private
|
|
1008
|
-
private subscribeToEndAudio;
|
|
1057
|
+
private setupAudioEventListeners;
|
|
1009
1058
|
private cleanupAudio;
|
|
1010
1059
|
onPlayMessage(): void;
|
|
1011
1060
|
private initializePlainTextWords;
|
|
@@ -1014,8 +1063,9 @@ declare class MessageContentDisplayer implements OnDestroy {
|
|
|
1014
1063
|
index: number;
|
|
1015
1064
|
} | IWordMetadata): void;
|
|
1016
1065
|
private startAudioPlayback;
|
|
1066
|
+
debug(): void;
|
|
1017
1067
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MessageContentDisplayer, never>;
|
|
1018
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MessageContentDisplayer, "message-content-displayer", never, { "message": { "alias": "message"; "required": true; "isSignal": true; }; }, { "playAudio": "playAudio"; "audioCompleted": "audioCompleted"; "wordClicked": "wordClicked"; }, never, never, true, never>;
|
|
1068
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MessageContentDisplayer, "message-content-displayer", never, { "message": { "alias": "message"; "required": true; "isSignal": true; }; "markWord": { "alias": "markWord"; "required": false; "isSignal": true; }; }, { "playAudio": "playAudio"; "audioCompleted": "audioCompleted"; "wordClicked": "wordClicked"; }, never, never, true, never>;
|
|
1019
1069
|
}
|
|
1020
1070
|
|
|
1021
1071
|
declare function matchTranscription(originalText: string, transcription: any[]): any[];
|
|
@@ -1026,12 +1076,13 @@ declare class ChatMessageOrchestratorComponent implements OnInit {
|
|
|
1026
1076
|
private orchestrationService;
|
|
1027
1077
|
messages: _angular_core.InputSignal<MessageContent[]>;
|
|
1028
1078
|
messageRole: _angular_core.InputSignal<ChatRole>;
|
|
1079
|
+
audioCompleted: _angular_core.OutputEmitterRef<MessageContent>;
|
|
1029
1080
|
messagesSignal: _angular_core.Signal<MessageContent[]>;
|
|
1030
1081
|
ngOnInit(): void;
|
|
1031
1082
|
onAudioCompleted(message: MessageContent): void;
|
|
1032
1083
|
onWordClicked(wordData: WordData): void;
|
|
1033
1084
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChatMessageOrchestratorComponent, never>;
|
|
1034
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChatMessageOrchestratorComponent, "dc-message-orchestrator", never, { "messages": { "alias": "messages"; "required": true; "isSignal": true; }; "messageRole": { "alias": "messageRole"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1085
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChatMessageOrchestratorComponent, "dc-message-orchestrator", never, { "messages": { "alias": "messages"; "required": true; "isSignal": true; }; "messageRole": { "alias": "messageRole"; "required": true; "isSignal": true; }; }, { "audioCompleted": "audioCompleted"; }, never, never, true, never>;
|
|
1035
1086
|
}
|
|
1036
1087
|
|
|
1037
1088
|
declare class DCConversationUserChatSettingsComponent implements OnInit {
|
|
@@ -1083,5 +1134,47 @@ declare class DCConversationUserChatSettingsComponent implements OnInit {
|
|
|
1083
1134
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DCConversationUserChatSettingsComponent, "dc-chat-settings-dialog", never, { "showFeature": { "alias": "showFeature"; "required": false; "isSignal": true; }; }, { "onSettingsChange": "onSettingsChange"; "closeClicked": "closeClicked"; "settingsApplied": "settingsApplied"; }, never, never, true, never>;
|
|
1084
1135
|
}
|
|
1085
1136
|
|
|
1086
|
-
|
|
1087
|
-
|
|
1137
|
+
declare enum GenerationType {
|
|
1138
|
+
GenerateConversationCard = "GenerateConversationCard",
|
|
1139
|
+
GenerateIdeas = "GenerateIdeas",
|
|
1140
|
+
CompletePendingCards = "CompletePendingCards",
|
|
1141
|
+
GeneratePendingImages = "GeneratePendingImages",
|
|
1142
|
+
GenerateImage = "GenerateImage",
|
|
1143
|
+
GenerateMissingData = "GenerateMissingData"
|
|
1144
|
+
}
|
|
1145
|
+
interface IGenerationOptions {
|
|
1146
|
+
type: GenerationType;
|
|
1147
|
+
idea?: string;
|
|
1148
|
+
targetLang?: string;
|
|
1149
|
+
language?: string;
|
|
1150
|
+
id?: string;
|
|
1151
|
+
options?: IGenerateConversationCardsDto & {
|
|
1152
|
+
language: string;
|
|
1153
|
+
numCards?: number;
|
|
1154
|
+
};
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
declare class CardsCreatorComponent {
|
|
1158
|
+
private readonly agentCardsGenerationService;
|
|
1159
|
+
idea: _angular_core.WritableSignal<string>;
|
|
1160
|
+
targetLang: _angular_core.WritableSignal<string>;
|
|
1161
|
+
language: _angular_core.WritableSignal<string>;
|
|
1162
|
+
cardId: _angular_core.WritableSignal<string>;
|
|
1163
|
+
numCards: _angular_core.WritableSignal<number>;
|
|
1164
|
+
result: _angular_core.WritableSignal<any>;
|
|
1165
|
+
loading: _angular_core.WritableSignal<boolean>;
|
|
1166
|
+
generate(options: IGenerationOptions): Promise<any>;
|
|
1167
|
+
generateConversationCard(): void;
|
|
1168
|
+
generateIdeas(): void;
|
|
1169
|
+
completePendingCards(): void;
|
|
1170
|
+
generatePendingImages(): void;
|
|
1171
|
+
generateImageForCard(): void;
|
|
1172
|
+
generateMissingData(): void;
|
|
1173
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardsCreatorComponent, never>;
|
|
1174
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardsCreatorComponent, "app-cards-creator", never, {}, {}, never, never, true, never>;
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
declare const AGENT_CARDS_STATE_SERVICE: InjectionToken<MasterStateService<IAgentCard>>;
|
|
1178
|
+
|
|
1179
|
+
export { AGENT_CARDS_STATE_SERVICE, AIGenerationService, AgentCardListComponent, AgentCardUI, AgentCardsGenerationService, AudioService, AudioSpeed, CONVERSATION_AI_TOKEN, CardsCreatorComponent, ChatEventType, ChatMessage, ChatMessageOrchestratorComponent, ChatMonitorService, ChatRole, ConditionOperator, ConditionType, ContextEngineService, ContextType, ConversationDTO, ConversationEvents, ConversationMessagesDTO, ConversationPromptBuilderService, ConversationType$1 as ConversationType, ConversationTypeOptions, DCAgentCardFormComponent, DCChatComponent, DCConversationUserChatSettingsComponent, DcAgentCardDetailsComponent, DefaultAgentCardsService, DoActionTypeOptions, DynamicFlowService, DynamicFlowTaskTypeOptions, EAccountsPlatform, EAgentType, EDoActionType, EDynamicFlowTaskType, EntityThen, EntityWhatOptions, EntityWhenOptions, EvalResultStringDefinition, GlobalToolsService, MOOD_STATE_PROMPT, MessageContent, MessageContentDisplayer, MessagesStateService, ModelSelectorComponent, PopupService, SystemPromptType, TextEngineOptions, TextEngines, USER_DATA_EXCHANGE, UserDataExchangeAbstractService, VoiceTTSOption, VoiceTTSOptions, WordTimestamps, buildObjectTTSRequest, characterCardStringDataDefinition, convertToHTML, createAIModelFormGroup, defaultconvUserSettings, extractAudioAndTranscription, extractJsonFromResponse, getMoodStateLabelsAsString, markdownToHtml, matchTranscription, provideAgentCardService, provideUserDataExchange, removeEmojis, removeEmojisAndSpecialCharacters, removeSpecialCharacters };
|
|
1180
|
+
export type { Appearance, AudioGenerated, AudioState, BackgroundTask, ChangePromptAction, CharacterCardData, ChatEvent, ConversationFlowFormGroup, ConversationSettingsFormGroup, DoAction, DoActionFormGroup, DynamicConditionFormGroup, DynamicCriteriaFormGroup, IAccounts, IAgentAssets, IAgentCard, IAgentCardMeta, IAgentMetadata, IAgentResponseDTO, ICharacterCardDC, IConversationFlow, IConversationSettings, IConversationSettingsDTO, IDynamicCondition, IDynamicCriteria, IDynamicFlowTask, IGenerateConversationCardsDto, ISimpleAgent, ITTS, IWordMetadata, ModelFormGroup, ModelName, SimpleAgentTask, SimpleAgentTaskFormGroup, SimpleEvalResult, TranscriptionsWhisper, TriggerTasksFormGroup, UserDataExchange, VoiceTTS, WordData };
|