@dataclouder/ngx-agent-cards 0.1.95 → 0.1.97
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
|
@@ -159,6 +159,7 @@ type ConversationFlowFormGroup = FormGroup<{
|
|
|
159
159
|
detectableStates: FormArray<DynamicCriteriaFormGroup>;
|
|
160
160
|
}>;
|
|
161
161
|
performancePrompt: FormControl<string>;
|
|
162
|
+
maxTurns: FormControl<number>;
|
|
162
163
|
}>;
|
|
163
164
|
type ConversationSettingsFormGroup = FormGroup<{
|
|
164
165
|
textEngine: FormControl<TextEngines>;
|
|
@@ -367,6 +368,7 @@ interface IConversationFlow {
|
|
|
367
368
|
dynamicConditions?: IDynamicCondition[];
|
|
368
369
|
moodState?: IMoodState;
|
|
369
370
|
performancePrompt?: string;
|
|
371
|
+
maxTurns?: number;
|
|
370
372
|
}
|
|
371
373
|
interface IChallengeState {
|
|
372
374
|
id: string;
|
|
@@ -1106,7 +1108,7 @@ declare class EvaluationService {
|
|
|
1106
1108
|
private _handleScoreUpdate;
|
|
1107
1109
|
resetEvaluation(): void;
|
|
1108
1110
|
resetScore(): void;
|
|
1109
|
-
|
|
1111
|
+
analyzePerformance(customPrompt?: string): Promise<any>;
|
|
1110
1112
|
openFeedbackEvaluation(data?: PerformanceEvaluation): void;
|
|
1111
1113
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EvaluationService, never>;
|
|
1112
1114
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<EvaluationService>;
|
|
@@ -1216,6 +1218,7 @@ declare class DCAgentCardFormComponent extends EntityBaseFormComponent<IAgentCar
|
|
|
1216
1218
|
detectableStates: FormArray<_dataclouder_ngx_agent_cards.DynamicCriteriaFormGroup>;
|
|
1217
1219
|
}>;
|
|
1218
1220
|
performancePrompt: _angular_forms.FormControl<string>;
|
|
1221
|
+
maxTurns: _angular_forms.FormControl<number>;
|
|
1219
1222
|
}>;
|
|
1220
1223
|
manageable: _angular_forms.FormGroup<any>;
|
|
1221
1224
|
learnable: _angular_forms.FormGroup<{
|