@dataclouder/ngx-agent-cards 0.1.49 → 0.1.50
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
|
@@ -459,7 +459,9 @@ declare enum ContextType {
|
|
|
459
459
|
|
|
460
460
|
declare class DefaultAgentCardsService extends EntityCommunicationService<IAgentCard> {
|
|
461
461
|
private conversationCostService;
|
|
462
|
+
private userService;
|
|
462
463
|
randomSeed: number;
|
|
464
|
+
private toastService;
|
|
463
465
|
constructor();
|
|
464
466
|
partialUpdateAgentCard(agentCard: IAgentCard): Promise<IAgentCard>;
|
|
465
467
|
generateMainImage(idCard: string): Promise<any>;
|
|
@@ -475,7 +477,7 @@ declare class DefaultAgentCardsService extends EntityCommunicationService<IAgent
|
|
|
475
477
|
translateConversation(currentLang: string, targetLang: string, id: string): Promise<ChatUserSettings>;
|
|
476
478
|
getAudioTranscriptions(audio: Blob, options: unknown): Promise<TranscriptionsWhisper>;
|
|
477
479
|
callInstruction(prompt: string, model: IAIModel): Promise<IAgentResponseDTO>;
|
|
478
|
-
saveConversationUserChatSettings(
|
|
480
|
+
saveConversationUserChatSettings(newSettings: ChatUserSettings): Promise<ChatUserSettings>;
|
|
479
481
|
generateImageForCard(idCard: string): Promise<any>;
|
|
480
482
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DefaultAgentCardsService, never>;
|
|
481
483
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DefaultAgentCardsService>;
|