@dataclouder/ngx-agent-cards 0.1.35 → 0.1.37
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
|
@@ -304,7 +304,6 @@ interface IAgentCard {
|
|
|
304
304
|
agentType?: EAgentType;
|
|
305
305
|
lang?: string;
|
|
306
306
|
assets?: IAssetable;
|
|
307
|
-
image?: ImgStorageData;
|
|
308
307
|
characterCard?: ICharacterCardDC;
|
|
309
308
|
conversationSettings?: IConversationSettings;
|
|
310
309
|
metaApp?: IAgentMetadata;
|
|
@@ -502,14 +501,10 @@ declare abstract class UserDataExchangeAbstractService {
|
|
|
502
501
|
declare const getMoodStateLabelsAsString: () => string;
|
|
503
502
|
declare const MOOD_STATE_PROMPT: string;
|
|
504
503
|
|
|
505
|
-
declare function markdownToHtml(markdown:
|
|
506
|
-
declare function convertToHTML(text:
|
|
507
|
-
declare function markdownToHTML(markdownText: any): any;
|
|
508
|
-
declare function markdownBasicToHTML(markdownText: any): any;
|
|
509
|
-
declare function markdownToHTML2(markdown: any): any[];
|
|
504
|
+
declare function markdownToHtml(markdown: string): any;
|
|
505
|
+
declare function convertToHTML(text: string): any;
|
|
510
506
|
declare function removeEmojisAndSpecialCharacters(text: string): string;
|
|
511
507
|
declare function removeEmojis(text: string): string;
|
|
512
|
-
declare function removeAllEmojis(text: any): any;
|
|
513
508
|
declare function removeSpecialCharacters(inputText: string): string;
|
|
514
509
|
|
|
515
510
|
declare class AudioService {
|
|
@@ -1083,5 +1078,5 @@ declare class DCConversationUserChatSettingsComponent implements OnInit {
|
|
|
1083
1078
|
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
1079
|
}
|
|
1085
1080
|
|
|
1086
|
-
export { AIGenerationService, AgentCardListComponent, AgentCardUI, AudioService, AudioSpeed, CONVERSATION_AI_TOKEN, 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,
|
|
1081
|
+
export { AIGenerationService, AgentCardListComponent, AgentCardUI, AudioService, AudioSpeed, CONVERSATION_AI_TOKEN, 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 };
|
|
1087
1082
|
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, ISimpleAgent, ITTS, IWordMetadata, ModelFormGroup, ModelName, SimpleAgentTask, SimpleAgentTaskFormGroup, SimpleEvalResult, TranscriptionsWhisper, TriggerTasksFormGroup, UserDataExchange, VoiceTTS, WordData };
|