@dataclouder/ngx-agent-cards 0.2.1 → 0.2.3
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
|
@@ -411,6 +411,7 @@ declare enum EAgentType {
|
|
|
411
411
|
interface VoiceCloning {
|
|
412
412
|
sample: AudioStorage;
|
|
413
413
|
transcription: string;
|
|
414
|
+
main: VoiceTTS;
|
|
414
415
|
}
|
|
415
416
|
interface IAgentCard {
|
|
416
417
|
version?: string;
|
|
@@ -1214,6 +1215,7 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
|
|
|
1214
1215
|
protected entityCommunicationService: _dataclouder_ngx_agent_cards.DefaultAgentCardsService;
|
|
1215
1216
|
private dialogService;
|
|
1216
1217
|
private characterFormGroupService;
|
|
1218
|
+
private ttsService;
|
|
1217
1219
|
conversationOptions: {
|
|
1218
1220
|
value: ConversationType$1;
|
|
1219
1221
|
label: string;
|
|
@@ -1232,7 +1234,6 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
|
|
|
1232
1234
|
form: _angular_forms.FormGroup<{
|
|
1233
1235
|
version: _angular_forms.FormControl<string>;
|
|
1234
1236
|
id: _angular_forms.FormControl<string>;
|
|
1235
|
-
title: _angular_forms.FormControl<string>;
|
|
1236
1237
|
name: _angular_forms.FormControl<string>;
|
|
1237
1238
|
description: _angular_forms.FormControl<string>;
|
|
1238
1239
|
lang: _angular_forms.FormControl<string>;
|
|
@@ -1295,6 +1296,10 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
|
|
|
1295
1296
|
onAssetsChange(event: IAssetable): void;
|
|
1296
1297
|
goToCardsCreator(): void;
|
|
1297
1298
|
onFileUploaded(event: FileStorageData): void;
|
|
1299
|
+
isCloningVoice: _angular_core.WritableSignal<boolean>;
|
|
1300
|
+
readonly canCloneVoice: _angular_core.Signal<boolean>;
|
|
1301
|
+
readonly fishModelId: _angular_core.Signal<any>;
|
|
1302
|
+
cloneVoice(): Promise<void>;
|
|
1298
1303
|
deleteCard(): Promise<void>;
|
|
1299
1304
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DCAgentCardFormComponent, never>;
|
|
1300
1305
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DCAgentCardFormComponent, "dc-agent-form", never, {}, { "onSave": "onSave"; }, never, never, true, never>;
|