@dataclouder/ngx-agent-cards 0.1.74 → 0.1.76
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
|
@@ -119,6 +119,7 @@ type SimpleAgentTaskFormGroup = FormGroup<{
|
|
|
119
119
|
modelQuality: FormControl<EModelQuality>;
|
|
120
120
|
model: ModelFormGroup;
|
|
121
121
|
enabled: FormControl<boolean>;
|
|
122
|
+
disableFeature: FormControl<boolean>;
|
|
122
123
|
}>;
|
|
123
124
|
type DynamicCriteriaFormGroup = FormGroup<{
|
|
124
125
|
name: FormControl<string>;
|
|
@@ -438,8 +439,9 @@ interface SimpleAgentTask {
|
|
|
438
439
|
systemPrompt?: string;
|
|
439
440
|
model?: IAIModel;
|
|
440
441
|
enabled?: boolean;
|
|
442
|
+
disableFeature?: boolean;
|
|
441
443
|
}
|
|
442
|
-
type IDynamicFlowTask = Pick<SimpleAgentTask, 'task' | 'model' | 'enabled'>;
|
|
444
|
+
type IDynamicFlowTask = Pick<SimpleAgentTask, 'task' | 'model' | 'enabled' | 'disableFeature'>;
|
|
443
445
|
declare enum EAccountsPlatform {
|
|
444
446
|
Google = "google",
|
|
445
447
|
Tiktok = "tiktok",
|
|
@@ -580,6 +582,7 @@ declare class DefaultAgentCardsService extends EntityCommunicationService<IAgent
|
|
|
580
582
|
partialUpdateAgentCard(agentCard: IAgentCard): Promise<IAgentCard>;
|
|
581
583
|
generateMainImage(idCard: string): Promise<any>;
|
|
582
584
|
completeAgentCard(idCard: string): Promise<any>;
|
|
585
|
+
getFixedQuery(): Record<string, any>;
|
|
583
586
|
callChatCompletion(conversation: IConversationSettingsDTO, tag?: string): Promise<IAgentResponseDTO>;
|
|
584
587
|
filterConversationCards(filters: FiltersConfig): Promise<IFilterQueryResponse<IAgentCard>>;
|
|
585
588
|
getAllConversationCards(): Promise<IAgentCard[]>;
|