@dataclouder/ngx-agent-cards 0.1.91 → 0.1.92
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
|
@@ -358,12 +358,13 @@ interface IMoodState {
|
|
|
358
358
|
detectableStates: string[];
|
|
359
359
|
}
|
|
360
360
|
interface IConversationFlow {
|
|
361
|
-
goal
|
|
361
|
+
goal?: IDynamicFlowTask;
|
|
362
362
|
tools?: IDynamicCriteria[];
|
|
363
|
-
triggerTasks
|
|
363
|
+
triggerTasks?: Partial<Record<ConversationEvents, IDynamicFlowTask>>;
|
|
364
364
|
challenges?: IDynamicCriteria[];
|
|
365
|
-
dynamicConditions
|
|
366
|
-
moodState
|
|
365
|
+
dynamicConditions?: IDynamicCondition[];
|
|
366
|
+
moodState?: IMoodState;
|
|
367
|
+
performancePrompt?: string;
|
|
367
368
|
}
|
|
368
369
|
interface IChallengeState {
|
|
369
370
|
id: string;
|
|
@@ -384,6 +385,8 @@ interface IMoodStateRuntime {
|
|
|
384
385
|
interface IConversationFlowState {
|
|
385
386
|
goal: {
|
|
386
387
|
value: any;
|
|
388
|
+
deltaPoints?: number;
|
|
389
|
+
feedback?: string;
|
|
387
390
|
};
|
|
388
391
|
challenges: {
|
|
389
392
|
name: string;
|
|
@@ -1085,7 +1088,7 @@ declare class EvaluationService {
|
|
|
1085
1088
|
private _handleScoreUpdate;
|
|
1086
1089
|
resetEvaluation(): void;
|
|
1087
1090
|
resetScore(): void;
|
|
1088
|
-
analylizePerformance(): Promise<any>;
|
|
1091
|
+
analylizePerformance(customPrompt?: string): Promise<any>;
|
|
1089
1092
|
openFeedbackEvaluation(data?: PerformanceEvaluation): void;
|
|
1090
1093
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EvaluationService, never>;
|
|
1091
1094
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<EvaluationService>;
|