@dataclouder/ngx-agent-cards 0.1.36 → 0.1.38
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
|
@@ -715,8 +715,10 @@ declare class EvaluationService {
|
|
|
715
715
|
private contextEngineService;
|
|
716
716
|
private dialogService;
|
|
717
717
|
private loadingBarService;
|
|
718
|
+
private userService;
|
|
718
719
|
scoreSignal: _angular_core.WritableSignal<number>;
|
|
719
720
|
private evaluationResultSignal;
|
|
721
|
+
isGoalCompleted: _angular_core.WritableSignal<boolean>;
|
|
720
722
|
evaluateGoal(goalTask: IDynamicFlowTask): Promise<any>;
|
|
721
723
|
evaluateConversation(task: SimpleAgentTask, contextType?: ContextType): Promise<IEvaluationResponse>;
|
|
722
724
|
/**
|
|
@@ -730,6 +732,8 @@ declare class EvaluationService {
|
|
|
730
732
|
evaluateWithTask(agentTask: IDynamicFlowTask): Promise<any>;
|
|
731
733
|
updateScore(additionalScore: number): void;
|
|
732
734
|
setScore(newScore: number): void;
|
|
735
|
+
private _handleScoreUpdate;
|
|
736
|
+
resetEvaluation(): void;
|
|
733
737
|
resetScore(): void;
|
|
734
738
|
analylizePerformance(): Promise<any>;
|
|
735
739
|
openFeedbackEvaluation(data?: PerformanceEvaluation): void;
|
|
@@ -1033,6 +1037,7 @@ declare class DCConversationUserChatSettingsComponent implements OnInit {
|
|
|
1033
1037
|
private dialogRef;
|
|
1034
1038
|
private fb;
|
|
1035
1039
|
private conversationCardAIService;
|
|
1040
|
+
userService: UserService;
|
|
1036
1041
|
isLoadingModels: boolean;
|
|
1037
1042
|
readonly showFeature: _angular_core.InputSignal<any>;
|
|
1038
1043
|
readonly onSettingsChange: _angular_core.OutputEmitterRef<any>;
|
|
@@ -1069,7 +1074,6 @@ declare class DCConversationUserChatSettingsComponent implements OnInit {
|
|
|
1069
1074
|
}>;
|
|
1070
1075
|
}>;
|
|
1071
1076
|
tooltipRef: TemplateRef<any>;
|
|
1072
|
-
isAdmin: boolean;
|
|
1073
1077
|
ngOnInit(): void;
|
|
1074
1078
|
private loadInitialSettings;
|
|
1075
1079
|
close(): void;
|