@dataclouder/ngx-agent-cards 0.2.11 → 0.2.13
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
|
@@ -5,7 +5,7 @@ import { ChatUserSettings, EModelQuality, IAuditable, IAIModel, IManageable, ILe
|
|
|
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, TemplateRef, EventEmitter } from '@angular/core';
|
|
8
|
+
import { InjectionToken, Type, Provider, WritableSignal, Injector, Signal, OnDestroy, ElementRef, OnInit, AfterViewInit, 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';
|
|
@@ -13,6 +13,7 @@ import * as _dataclouder_ngx_agent_cards from '@dataclouder/ngx-agent-cards';
|
|
|
13
13
|
import { SafeHtml } from '@angular/platform-browser';
|
|
14
14
|
import * as dist_dataclouder_ngx_knowledge_types_dataclouder_ngx_knowledge from 'dist/dataclouder/ngx-knowledge/types/dataclouder-ngx-knowledge';
|
|
15
15
|
import { MenuItem } from 'primeng/api';
|
|
16
|
+
import { Application } from 'pixi.js';
|
|
16
17
|
import * as dist_dataclouder_ngx_core_types_dataclouder_ngx_core from 'dist/dataclouder/ngx-core/types/dataclouder-ngx-core';
|
|
17
18
|
import * as _angular_router from '@angular/router';
|
|
18
19
|
import { MasterStateService } from '@dataclouder/ngx-knowledge';
|
|
@@ -291,6 +292,8 @@ interface IConversationSettings {
|
|
|
291
292
|
tts?: ITTS;
|
|
292
293
|
mainVoice?: VoiceTTS;
|
|
293
294
|
secondaryVoice?: VoiceTTS;
|
|
295
|
+
chatMode?: 'regular' | 'immersive';
|
|
296
|
+
avatarDisplayMode?: 'card' | 'transparent' | 'fullscreen';
|
|
294
297
|
}
|
|
295
298
|
type IConversationSettingsDTO = Partial<IConversationSettings> & {
|
|
296
299
|
returnJson?: boolean;
|
|
@@ -471,6 +474,8 @@ interface IAgentCard {
|
|
|
471
474
|
voiceCloning?: VoiceCloning;
|
|
472
475
|
agenticConfig?: IAgenticConfig;
|
|
473
476
|
metaApp?: IAgentMetadata;
|
|
477
|
+
live2d?: any;
|
|
478
|
+
avatarType?: 'image' | 'video' | 'live2d' | 'vroid';
|
|
474
479
|
}
|
|
475
480
|
interface IAgentCardMeta extends IAgentCard {
|
|
476
481
|
taken: any;
|
|
@@ -498,7 +503,8 @@ declare enum EAccountsPlatform {
|
|
|
498
503
|
Google = "google",
|
|
499
504
|
Tiktok = "tiktok",
|
|
500
505
|
Instagram = "instagram",
|
|
501
|
-
Youtube = "youtube"
|
|
506
|
+
Youtube = "youtube",
|
|
507
|
+
Facebook = "facebook"
|
|
502
508
|
}
|
|
503
509
|
interface IAccounts {
|
|
504
510
|
platform: EAccountsPlatform;
|
|
@@ -678,6 +684,7 @@ declare class DefaultAgentCardsService extends EntityCommunicationService<IAgent
|
|
|
678
684
|
private whisperService;
|
|
679
685
|
private fbAuthService;
|
|
680
686
|
constructor();
|
|
687
|
+
findOne(id: string, projection?: any): Promise<IAgentCard>;
|
|
681
688
|
partialUpdateAgentCard(agentCard: IAgentCard): Promise<IAgentCard>;
|
|
682
689
|
generateMainImage(idCard: string): Promise<any>;
|
|
683
690
|
completeAgentCard(idCard: string): Promise<any>;
|
|
@@ -1355,6 +1362,10 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
|
|
|
1355
1362
|
label: string;
|
|
1356
1363
|
}[];
|
|
1357
1364
|
agentTypeOptions: (string | EAgentType.None)[];
|
|
1365
|
+
avatarTypeOptions: {
|
|
1366
|
+
label: string;
|
|
1367
|
+
value: string;
|
|
1368
|
+
}[];
|
|
1358
1369
|
agenticEngineOptions: AgenticEngine[];
|
|
1359
1370
|
agenticPatternOptions: AgenticPattern[];
|
|
1360
1371
|
allowedToolsOptions: {
|
|
@@ -1363,6 +1374,7 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
|
|
|
1363
1374
|
}[];
|
|
1364
1375
|
readonly onSave: _angular_core.OutputEmitterRef<any>;
|
|
1365
1376
|
readonly inputSettings: _angular_core.InputSignal<DCAgentFormSettings>;
|
|
1377
|
+
readonly onSelectLive2d: _angular_core.OutputEmitterRef<void>;
|
|
1366
1378
|
isToolAllowed(toolValue: string): boolean;
|
|
1367
1379
|
toggleTool(toolValue: string, checked: boolean): void;
|
|
1368
1380
|
form: _angular_forms.FormGroup<{
|
|
@@ -1389,6 +1401,8 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
|
|
|
1389
1401
|
id: _angular_forms.FormControl<string>;
|
|
1390
1402
|
}>;
|
|
1391
1403
|
rules: FormArray<_angular_forms.FormControl<unknown>>;
|
|
1404
|
+
chatMode: _angular_forms.FormControl<string>;
|
|
1405
|
+
avatarDisplayMode: _angular_forms.FormControl<string>;
|
|
1392
1406
|
}>;
|
|
1393
1407
|
accounts: FormArray<_angular_forms.FormControl<unknown>>;
|
|
1394
1408
|
conversationFlow: _angular_forms.FormGroup<{
|
|
@@ -1434,6 +1448,8 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
|
|
|
1434
1448
|
id: _angular_forms.FormControl<string>;
|
|
1435
1449
|
}>;
|
|
1436
1450
|
}>;
|
|
1451
|
+
live2d: _angular_forms.FormControl<any>;
|
|
1452
|
+
avatarType: _angular_forms.FormControl<any>;
|
|
1437
1453
|
}>;
|
|
1438
1454
|
protected patchForm(agentCard: IAgentCard): void;
|
|
1439
1455
|
save(): Promise<IAgentCard | undefined>;
|
|
@@ -1458,7 +1474,7 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
|
|
|
1458
1474
|
cloneVoice(): Promise<void>;
|
|
1459
1475
|
deleteCard(): Promise<void>;
|
|
1460
1476
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DCAgentCardFormComponent, never>;
|
|
1461
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DCAgentCardFormComponent, "dc-agent-form", never, { "inputSettings": { "alias": "inputSettings"; "required": false; "isSignal": true; }; }, { "onSave": "onSave"; }, never, never, true, never>;
|
|
1477
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DCAgentCardFormComponent, "dc-agent-form", never, { "inputSettings": { "alias": "inputSettings"; "required": false; "isSignal": true; }; }, { "onSave": "onSave"; "onSelectLive2d": "onSelectLive2d"; }, never, never, true, never>;
|
|
1462
1478
|
}
|
|
1463
1479
|
|
|
1464
1480
|
declare class AgentCardListComponent extends EntityBaseListV2Component<IAgentCard> implements OnInit {
|
|
@@ -1481,6 +1497,83 @@ declare class AgentCardListComponent extends EntityBaseListV2Component<IAgentCar
|
|
|
1481
1497
|
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>;
|
|
1482
1498
|
}
|
|
1483
1499
|
|
|
1500
|
+
interface ModelParameters {
|
|
1501
|
+
count: number;
|
|
1502
|
+
ids: string[];
|
|
1503
|
+
minimumValues: number[];
|
|
1504
|
+
maximumValues: number[];
|
|
1505
|
+
defaultValues: number[];
|
|
1506
|
+
currentValues: number[];
|
|
1507
|
+
}
|
|
1508
|
+
interface ModelParts {
|
|
1509
|
+
count: number;
|
|
1510
|
+
ids: string[];
|
|
1511
|
+
opacities: number[];
|
|
1512
|
+
parentIndices: number[];
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1515
|
+
declare class Live2dModelComponent implements AfterViewInit {
|
|
1516
|
+
canvasRef: ElementRef<HTMLCanvasElement>;
|
|
1517
|
+
modelPath: _angular_core.InputSignal<string>;
|
|
1518
|
+
scale: _angular_core.InputSignal<number>;
|
|
1519
|
+
zoom: _angular_core.InputSignal<number>;
|
|
1520
|
+
x: _angular_core.InputSignal<number>;
|
|
1521
|
+
y: _angular_core.InputSignal<number>;
|
|
1522
|
+
modelLoaded: _angular_core.OutputEmitterRef<{
|
|
1523
|
+
parameters: ModelParameters | null;
|
|
1524
|
+
parts: ModelParts | null;
|
|
1525
|
+
motions: string[];
|
|
1526
|
+
expressions: string[];
|
|
1527
|
+
}>;
|
|
1528
|
+
viewStateChanged: _angular_core.OutputEmitterRef<{
|
|
1529
|
+
zoom: number;
|
|
1530
|
+
x: number;
|
|
1531
|
+
y: number;
|
|
1532
|
+
}>;
|
|
1533
|
+
app: Application;
|
|
1534
|
+
model: any;
|
|
1535
|
+
private modelParameters;
|
|
1536
|
+
private modelParts;
|
|
1537
|
+
private motionGroups;
|
|
1538
|
+
private expressions;
|
|
1539
|
+
private isViewInitialized;
|
|
1540
|
+
effectiveZoom: _angular_core.Signal<number>;
|
|
1541
|
+
private isDragging;
|
|
1542
|
+
private dragStart;
|
|
1543
|
+
private dragStartModel;
|
|
1544
|
+
constructor();
|
|
1545
|
+
ngAfterViewInit(): Promise<void>;
|
|
1546
|
+
initializeCanvas(): Promise<void>;
|
|
1547
|
+
loadModel(modelPath: string): Promise<void>;
|
|
1548
|
+
private updateModelTransform;
|
|
1549
|
+
private extractModelInfo;
|
|
1550
|
+
playAnimation(groupName: string): void;
|
|
1551
|
+
playRandomAnimation(): void;
|
|
1552
|
+
speak(audioUrl: string, options?: {
|
|
1553
|
+
volume?: number;
|
|
1554
|
+
crossOrigin?: string;
|
|
1555
|
+
focus?: boolean;
|
|
1556
|
+
}): void;
|
|
1557
|
+
stopSpeaking(): void;
|
|
1558
|
+
updateModelParameter(event: {
|
|
1559
|
+
id: string;
|
|
1560
|
+
value: number;
|
|
1561
|
+
index: number;
|
|
1562
|
+
}): void;
|
|
1563
|
+
setExpression(expressionName: string): void;
|
|
1564
|
+
onPointerDown(event: PointerEvent): void;
|
|
1565
|
+
onPointerMove(event: PointerEvent): void;
|
|
1566
|
+
onPointerUp(event: PointerEvent): void;
|
|
1567
|
+
private onWheel;
|
|
1568
|
+
getFaceTransform(): {
|
|
1569
|
+
zoom: number;
|
|
1570
|
+
x: number;
|
|
1571
|
+
y: number;
|
|
1572
|
+
} | null;
|
|
1573
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Live2dModelComponent, never>;
|
|
1574
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Live2dModelComponent, "app-live2d-model", never, { "modelPath": { "alias": "modelPath"; "required": true; "isSignal": true; }; "scale": { "alias": "scale"; "required": false; "isSignal": true; }; "zoom": { "alias": "zoom"; "required": false; "isSignal": true; }; "x": { "alias": "x"; "required": false; "isSignal": true; }; "y": { "alias": "y"; "required": false; "isSignal": true; }; }, { "modelLoaded": "modelLoaded"; "viewStateChanged": "viewStateChanged"; }, never, never, true, never>;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1484
1577
|
declare class DcAgentCardConverseComponent implements OnInit, OnDestroy {
|
|
1485
1578
|
private agentCardService;
|
|
1486
1579
|
private route;
|
|
@@ -1491,16 +1584,28 @@ declare class DcAgentCardConverseComponent implements OnInit, OnDestroy {
|
|
|
1491
1584
|
videoPlayerService: VideoPlayerNativeService;
|
|
1492
1585
|
agentCardId: string;
|
|
1493
1586
|
useNativePlayer: boolean;
|
|
1587
|
+
activeAudioMessage: MessageContent | null;
|
|
1494
1588
|
private _isConversationActive;
|
|
1495
1589
|
set isConversationActive(val: boolean);
|
|
1496
1590
|
get isConversationActive(): boolean;
|
|
1497
1591
|
readonly onStartConversation: _angular_core.OutputEmitterRef<IAgentCard>;
|
|
1498
1592
|
videoPlayerA: _angular_core.Signal<ElementRef<HTMLVideoElement>>;
|
|
1499
1593
|
videoPlayerB: _angular_core.Signal<ElementRef<HTMLVideoElement>>;
|
|
1594
|
+
live2dModel: _angular_core.Signal<Live2dModelComponent>;
|
|
1500
1595
|
agentCard: _angular_core.WritableSignal<IAgentCard>;
|
|
1501
1596
|
showInfoLayer: _angular_core.WritableSignal<boolean>;
|
|
1502
|
-
isTransparent: _angular_core.Signal<boolean>;
|
|
1503
1597
|
isChatActive: _angular_core.Signal<boolean>;
|
|
1598
|
+
live2dZoomState: _angular_core.WritableSignal<number>;
|
|
1599
|
+
live2dXState: _angular_core.WritableSignal<number>;
|
|
1600
|
+
live2dYState: _angular_core.WritableSignal<number>;
|
|
1601
|
+
avatarDisplay: _angular_core.Signal<"transparent" | "card" | "fullscreen">;
|
|
1602
|
+
avatarType: _angular_core.Signal<"image" | "video" | "live2d" | "vroid">;
|
|
1603
|
+
model3JsonUrl: _angular_core.Signal<any>;
|
|
1604
|
+
onViewStateChanged(event: {
|
|
1605
|
+
zoom: number;
|
|
1606
|
+
x: number;
|
|
1607
|
+
y: number;
|
|
1608
|
+
}): void;
|
|
1504
1609
|
constructor();
|
|
1505
1610
|
ngOnDestroy(): void;
|
|
1506
1611
|
ngOnInit(): Promise<void>;
|
|
@@ -1509,7 +1614,7 @@ declare class DcAgentCardConverseComponent implements OnInit, OnDestroy {
|
|
|
1509
1614
|
startConversation(): void;
|
|
1510
1615
|
toggleInfoLayer(): void;
|
|
1511
1616
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DcAgentCardConverseComponent, never>;
|
|
1512
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DcAgentCardConverseComponent, "dc-agent-card-converse", never, { "agentCardId": { "alias": "agentCardId"; "required": false; }; "useNativePlayer": { "alias": "useNativePlayer"; "required": false; }; "isConversationActive": { "alias": "isConversationActive"; "required": false; }; }, { "onStartConversation": "onStartConversation"; }, never, never, true, never>;
|
|
1617
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DcAgentCardConverseComponent, "dc-agent-card-converse", never, { "agentCardId": { "alias": "agentCardId"; "required": false; }; "useNativePlayer": { "alias": "useNativePlayer"; "required": false; }; "activeAudioMessage": { "alias": "activeAudioMessage"; "required": false; }; "isConversationActive": { "alias": "isConversationActive"; "required": false; }; }, { "onStartConversation": "onStartConversation"; }, never, never, true, never>;
|
|
1513
1618
|
}
|
|
1514
1619
|
|
|
1515
1620
|
declare class DcAgentCardDetailComponent extends EntityBaseDetailComponent<IAgentCard> {
|
|
@@ -1893,5 +1998,5 @@ declare class ChatEngineTestComponent {
|
|
|
1893
1998
|
|
|
1894
1999
|
declare const AGENT_CARDS_STATE_SERVICE: InjectionToken<MasterStateService<IAgentCard>>;
|
|
1895
2000
|
|
|
1896
|
-
export { ACCDataGenerationComponent, AGENT_CARDS_STATE_SERVICE, AIGenerationService, AgentCardListComponent, AgentCardUI, AgentCardsGenerationService, AgenticEngine, AgenticPattern, AudioService, AudioSpeed, BACKGROUND_SERVICE_TOKEN, CHAT_OBSERVER_CONFIG, 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, DcObserverInterventionComponent, DefaultAgentCardsService, DoActionTypeOptions, DynamicFlowService, DynamicFlowTaskTypeOptions, EAccountsPlatform, EAgentType, EDoActionType, EDynamicFlowTaskType, EntityThen, EntityWhatOptions, EntityWhenOptions, EvalResultStringDefinition, GlobalToolsService, MessageContent, MessageContentDisplayer, MessagesStateService, ModelSelectorComponent, PolitoNotificationComponent, 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 };
|
|
1897
|
-
export type { Appearance, AudioGenerated, AudioStatus, BackgroundTask, CardTranslation, ChangePromptAction, CharacterCardData, ChatEvent, ConversationFlowFormGroup, ConversationSettingsFormGroup, DCAgentFormSettings, DoAction, DoActionFormGroup, DynamicConditionFormGroup, DynamicCriteriaFormGroup, IAccounts, IAgentAssets, IAgentCard, IAgentCardMeta, IAgentMetadata, IAgentResponseDTO, IAgenticConfig, IBackgroundService, ICardRoute, ICardRouteStep, IChallengeState, ICharacterCardDC, IConversationFlow, IConversationFlowState, IConversationSession, IConversationSettings, IConversationSettingsDTO, IDynamicCondition, IDynamicCriteria, IDynamicFlowTask, IGenerateConversationCardsDto, IGoalState, IInterventionState, IMoodState, IMoodStateRuntime, IObserverConfig, IRule, ISimpleAgent, ITTS, IVideoPlayerService, IWordMetadata, ModelFormGroup, ModelName, MultiLanguage, Persona, SimpleAgentTask, SimpleAgentTaskFormGroup, SimpleEvalResult, TextHTMLTag, TranscriptionsWhisper, TriggerTasksFormGroup, VoiceCloning, VoiceTTS, WordData };
|
|
2001
|
+
export { ACCDataGenerationComponent, AGENT_CARDS_STATE_SERVICE, AIGenerationService, AgentCardListComponent, AgentCardUI, AgentCardsGenerationService, AgenticEngine, AgenticPattern, AudioService, AudioSpeed, BACKGROUND_SERVICE_TOKEN, CHAT_OBSERVER_CONFIG, 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, DcObserverInterventionComponent, DefaultAgentCardsService, DoActionTypeOptions, DynamicFlowService, DynamicFlowTaskTypeOptions, EAccountsPlatform, EAgentType, EDoActionType, EDynamicFlowTaskType, EntityThen, EntityWhatOptions, EntityWhenOptions, EvalResultStringDefinition, GlobalToolsService, Live2dModelComponent, MessageContent, MessageContentDisplayer, MessagesStateService, ModelSelectorComponent, PolitoNotificationComponent, 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 };
|
|
2002
|
+
export type { Appearance, AudioGenerated, AudioStatus, BackgroundTask, CardTranslation, ChangePromptAction, CharacterCardData, ChatEvent, ConversationFlowFormGroup, ConversationSettingsFormGroup, DCAgentFormSettings, DoAction, DoActionFormGroup, DynamicConditionFormGroup, DynamicCriteriaFormGroup, IAccounts, IAgentAssets, IAgentCard, IAgentCardMeta, IAgentMetadata, IAgentResponseDTO, IAgenticConfig, IBackgroundService, ICardRoute, ICardRouteStep, IChallengeState, ICharacterCardDC, IConversationFlow, IConversationFlowState, IConversationSession, IConversationSettings, IConversationSettingsDTO, IDynamicCondition, IDynamicCriteria, IDynamicFlowTask, IGenerateConversationCardsDto, IGoalState, IInterventionState, IMoodState, IMoodStateRuntime, IObserverConfig, IRule, ISimpleAgent, ITTS, IVideoPlayerService, IWordMetadata, ModelFormGroup, ModelName, ModelParameters, ModelParts, MultiLanguage, Persona, SimpleAgentTask, SimpleAgentTaskFormGroup, SimpleEvalResult, TextHTMLTag, TranscriptionsWhisper, TriggerTasksFormGroup, VoiceCloning, VoiceTTS, WordData };
|