@cool-digital-solutions/interferir-models 1.3.21 → 1.3.23
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/dist/schemas/ai-hr-candidate-candidate-profile.schema.js +14 -14
- package/dist/schemas/ai-hr-candidate-top-candidate.schema.js +14 -14
- package/dist/schemas/ai-task-research-manager-output-presentation-submission.schema.js +2 -2
- package/dist/types/ai-hr-candidate-profile.type.d.ts +18 -14
- package/dist/types/ai-hr-candidate-top-candidate.type.d.ts +18 -14
- package/dist/types/ai-task-research-manager-output-presentation-submission.type.d.ts +5 -5
- package/package.json +1 -1
|
@@ -24,61 +24,61 @@ const aiHrCandidateProfileSchema = new mongoose_1.Schema({
|
|
|
24
24
|
thinkingStyle: {
|
|
25
25
|
learningIndex: {
|
|
26
26
|
score: { type: Number, required: false },
|
|
27
|
-
reasoning: [{ type: String,
|
|
27
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
28
28
|
},
|
|
29
29
|
verbalSkills: {
|
|
30
30
|
score: { type: Number, required: false },
|
|
31
|
-
reasoning: [{ type: String,
|
|
31
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
32
32
|
},
|
|
33
33
|
verbalReasoning: {
|
|
34
34
|
score: { type: Number, required: false },
|
|
35
|
-
reasoning: [{ type: String,
|
|
35
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
36
36
|
},
|
|
37
37
|
numericalAbility: {
|
|
38
38
|
score: { type: Number, required: false },
|
|
39
|
-
reasoning: [{ type: String,
|
|
39
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
40
40
|
},
|
|
41
41
|
numericalReasoning: {
|
|
42
42
|
score: { type: Number, required: false },
|
|
43
|
-
reasoning: [{ type: String,
|
|
43
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
44
44
|
},
|
|
45
45
|
},
|
|
46
46
|
behaviorTraits: {
|
|
47
47
|
energyLevel: {
|
|
48
48
|
score: { type: Number, required: false },
|
|
49
|
-
reasoning: [{ type: String,
|
|
49
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
50
50
|
},
|
|
51
51
|
assertiveness: {
|
|
52
52
|
score: { type: Number, required: false },
|
|
53
|
-
reasoning: [{ type: String,
|
|
53
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
54
54
|
},
|
|
55
55
|
sociability: {
|
|
56
56
|
score: { type: Number, required: false },
|
|
57
|
-
reasoning: [{ type: String,
|
|
57
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
58
58
|
},
|
|
59
59
|
manageability: {
|
|
60
60
|
score: { type: Number, required: false },
|
|
61
|
-
reasoning: [{ type: String,
|
|
61
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
62
62
|
},
|
|
63
63
|
attitude: {
|
|
64
64
|
score: { type: Number, required: false },
|
|
65
|
-
reasoning: [{ type: String,
|
|
65
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
66
66
|
},
|
|
67
67
|
decisiveness: {
|
|
68
68
|
score: { type: Number, required: false },
|
|
69
|
-
reasoning: [{ type: String,
|
|
69
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
70
70
|
},
|
|
71
71
|
accommodating: {
|
|
72
72
|
score: { type: Number, required: false },
|
|
73
|
-
reasoning: [{ type: String,
|
|
73
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
74
74
|
},
|
|
75
75
|
independence: {
|
|
76
76
|
score: { type: Number, required: false },
|
|
77
|
-
reasoning: [{ type: String,
|
|
77
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
78
78
|
},
|
|
79
79
|
objectiveJudgment: {
|
|
80
80
|
score: { type: Number, required: false },
|
|
81
|
-
reasoning: [{ type: String,
|
|
81
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
82
82
|
},
|
|
83
83
|
},
|
|
84
84
|
interests: {
|
|
@@ -24,61 +24,61 @@ const aiHrCandidateTopCandidateSchema = new mongoose_1.Schema({
|
|
|
24
24
|
thinkingStyle: {
|
|
25
25
|
learningIndex: {
|
|
26
26
|
score: { type: Number, required: false },
|
|
27
|
-
reasoning: [{ type: String,
|
|
27
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
28
28
|
},
|
|
29
29
|
verbalSkills: {
|
|
30
30
|
score: { type: Number, required: false },
|
|
31
|
-
reasoning: [{ type: String,
|
|
31
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
32
32
|
},
|
|
33
33
|
verbalReasoning: {
|
|
34
34
|
score: { type: Number, required: false },
|
|
35
|
-
reasoning: [{ type: String,
|
|
35
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
36
36
|
},
|
|
37
37
|
numericalAbility: {
|
|
38
38
|
score: { type: Number, required: false },
|
|
39
|
-
reasoning: [{ type: String,
|
|
39
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
40
40
|
},
|
|
41
41
|
numericalReasoning: {
|
|
42
42
|
score: { type: Number, required: false },
|
|
43
|
-
reasoning: [{ type: String,
|
|
43
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
44
44
|
},
|
|
45
45
|
},
|
|
46
46
|
behaviorTraits: {
|
|
47
47
|
energyLevel: {
|
|
48
48
|
score: { type: Number, required: false },
|
|
49
|
-
reasoning: [{ type: String,
|
|
49
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
50
50
|
},
|
|
51
51
|
assertiveness: {
|
|
52
52
|
score: { type: Number, required: false },
|
|
53
|
-
reasoning: [{ type: String,
|
|
53
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
54
54
|
},
|
|
55
55
|
sociability: {
|
|
56
56
|
score: { type: Number, required: false },
|
|
57
|
-
reasoning: [{ type: String,
|
|
57
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
58
58
|
},
|
|
59
59
|
manageability: {
|
|
60
60
|
score: { type: Number, required: false },
|
|
61
|
-
reasoning: [{ type: String,
|
|
61
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
62
62
|
},
|
|
63
63
|
attitude: {
|
|
64
64
|
score: { type: Number, required: false },
|
|
65
|
-
reasoning: [{ type: String,
|
|
65
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
66
66
|
},
|
|
67
67
|
decisiveness: {
|
|
68
68
|
score: { type: Number, required: false },
|
|
69
|
-
reasoning: [{ type: String,
|
|
69
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
70
70
|
},
|
|
71
71
|
accommodating: {
|
|
72
72
|
score: { type: Number, required: false },
|
|
73
|
-
reasoning: [{ type: String,
|
|
73
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
74
74
|
},
|
|
75
75
|
independence: {
|
|
76
76
|
score: { type: Number, required: false },
|
|
77
|
-
reasoning: [{ type: String,
|
|
77
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
78
78
|
},
|
|
79
79
|
objectiveJudgment: {
|
|
80
80
|
score: { type: Number, required: false },
|
|
81
|
-
reasoning: [{ type: String,
|
|
81
|
+
reasoning: [{ evidence: [{ type: String }], trait: [{ type: String }] }],
|
|
82
82
|
},
|
|
83
83
|
},
|
|
84
84
|
interests: {
|
|
@@ -12,9 +12,9 @@ const aiTaskResearchManagerOutputPresentationSubmissionSchema = new mongoose_1.S
|
|
|
12
12
|
aiTask: { type: mongoose_1.Schema.Types.ObjectId, ref: 'AiTask', required: true },
|
|
13
13
|
status: { type: String, enum: Object.values(ai_task_research_manager_output_presentation_submission_type_1.AiTaskResearchManagerOutputPresentationSubmissionStatus) },
|
|
14
14
|
process: { value: { type: Number }, text: { type: String, default: '' }, finishDate: { type: Number } },
|
|
15
|
-
paramOptions: {
|
|
15
|
+
paramOptions: { pageNumbers: [{ minPage: { type: Number }, maxPage: { type: Number } }], scopes: [{ type: String }] },
|
|
16
16
|
params: {
|
|
17
|
-
|
|
17
|
+
pageNumber: { type: Number, required: false },
|
|
18
18
|
scopes: [{ type: String }],
|
|
19
19
|
additionalScope: { type: String },
|
|
20
20
|
name: { type: String },
|
|
@@ -26,64 +26,68 @@ import { BaseModel, BaseSchema } from '../config';
|
|
|
26
26
|
import { Types } from 'mongoose';
|
|
27
27
|
import { IAiTask } from './ai-task.type';
|
|
28
28
|
import { IAiHrCandidate } from './ai-hr-candidate.type';
|
|
29
|
+
interface Reasoning {
|
|
30
|
+
evidence: string;
|
|
31
|
+
trait: string;
|
|
32
|
+
}
|
|
29
33
|
interface ThinkingStyle {
|
|
30
34
|
learningIndex: {
|
|
31
35
|
score: number;
|
|
32
|
-
reasoning:
|
|
36
|
+
reasoning: Reasoning[];
|
|
33
37
|
};
|
|
34
38
|
verbalSkills: {
|
|
35
39
|
score: number;
|
|
36
|
-
reasoning:
|
|
40
|
+
reasoning: Reasoning[];
|
|
37
41
|
};
|
|
38
42
|
verbalReasoning: {
|
|
39
43
|
score: number;
|
|
40
|
-
reasoning:
|
|
44
|
+
reasoning: Reasoning[];
|
|
41
45
|
};
|
|
42
46
|
numericalAbility: {
|
|
43
47
|
score: number;
|
|
44
|
-
reasoning:
|
|
48
|
+
reasoning: Reasoning[];
|
|
45
49
|
};
|
|
46
50
|
numericalReasoning: {
|
|
47
51
|
score: number;
|
|
48
|
-
reasoning:
|
|
52
|
+
reasoning: Reasoning[];
|
|
49
53
|
};
|
|
50
54
|
}
|
|
51
55
|
interface BehaviorTraits {
|
|
52
56
|
energyLevel: {
|
|
53
57
|
score: number;
|
|
54
|
-
reasoning:
|
|
58
|
+
reasoning: Reasoning[];
|
|
55
59
|
};
|
|
56
60
|
assertiveness: {
|
|
57
61
|
score: number;
|
|
58
|
-
reasoning:
|
|
62
|
+
reasoning: Reasoning[];
|
|
59
63
|
};
|
|
60
64
|
sociability: {
|
|
61
65
|
score: number;
|
|
62
|
-
reasoning:
|
|
66
|
+
reasoning: Reasoning[];
|
|
63
67
|
};
|
|
64
68
|
manageability: {
|
|
65
69
|
score: number;
|
|
66
|
-
reasoning:
|
|
70
|
+
reasoning: Reasoning[];
|
|
67
71
|
};
|
|
68
72
|
attitude: {
|
|
69
73
|
score: number;
|
|
70
|
-
reasoning:
|
|
74
|
+
reasoning: Reasoning[];
|
|
71
75
|
};
|
|
72
76
|
decisiveness: {
|
|
73
77
|
score: number;
|
|
74
|
-
reasoning:
|
|
78
|
+
reasoning: Reasoning[];
|
|
75
79
|
};
|
|
76
80
|
accommodating: {
|
|
77
81
|
score: number;
|
|
78
|
-
reasoning:
|
|
82
|
+
reasoning: Reasoning[];
|
|
79
83
|
};
|
|
80
84
|
independence: {
|
|
81
85
|
score: number;
|
|
82
|
-
reasoning:
|
|
86
|
+
reasoning: Reasoning[];
|
|
83
87
|
};
|
|
84
88
|
objectiveJudgment: {
|
|
85
89
|
score: number;
|
|
86
|
-
reasoning:
|
|
90
|
+
reasoning: Reasoning[];
|
|
87
91
|
};
|
|
88
92
|
}
|
|
89
93
|
interface Interests {
|
|
@@ -26,64 +26,68 @@ import { BaseModel, BaseSchema } from '../config';
|
|
|
26
26
|
import { Types } from 'mongoose';
|
|
27
27
|
import { IAiTask } from './ai-task.type';
|
|
28
28
|
import { IAiHrCandidate } from './ai-hr-candidate.type';
|
|
29
|
+
interface Reasoning {
|
|
30
|
+
evidence: string;
|
|
31
|
+
trait: string;
|
|
32
|
+
}
|
|
29
33
|
interface ThinkingStyle {
|
|
30
34
|
learningIndex: {
|
|
31
35
|
score: number;
|
|
32
|
-
reasoning:
|
|
36
|
+
reasoning: Reasoning[];
|
|
33
37
|
};
|
|
34
38
|
verbalSkills: {
|
|
35
39
|
score: number;
|
|
36
|
-
reasoning:
|
|
40
|
+
reasoning: Reasoning[];
|
|
37
41
|
};
|
|
38
42
|
verbalReasoning: {
|
|
39
43
|
score: number;
|
|
40
|
-
reasoning:
|
|
44
|
+
reasoning: Reasoning[];
|
|
41
45
|
};
|
|
42
46
|
numericalAbility: {
|
|
43
47
|
score: number;
|
|
44
|
-
reasoning:
|
|
48
|
+
reasoning: Reasoning[];
|
|
45
49
|
};
|
|
46
50
|
numericalReasoning: {
|
|
47
51
|
score: number;
|
|
48
|
-
reasoning:
|
|
52
|
+
reasoning: Reasoning[];
|
|
49
53
|
};
|
|
50
54
|
}
|
|
51
55
|
interface BehaviorTraits {
|
|
52
56
|
energyLevel: {
|
|
53
57
|
score: number;
|
|
54
|
-
reasoning:
|
|
58
|
+
reasoning: Reasoning[];
|
|
55
59
|
};
|
|
56
60
|
assertiveness: {
|
|
57
61
|
score: number;
|
|
58
|
-
reasoning:
|
|
62
|
+
reasoning: Reasoning[];
|
|
59
63
|
};
|
|
60
64
|
sociability: {
|
|
61
65
|
score: number;
|
|
62
|
-
reasoning:
|
|
66
|
+
reasoning: Reasoning[];
|
|
63
67
|
};
|
|
64
68
|
manageability: {
|
|
65
69
|
score: number;
|
|
66
|
-
reasoning:
|
|
70
|
+
reasoning: Reasoning[];
|
|
67
71
|
};
|
|
68
72
|
attitude: {
|
|
69
73
|
score: number;
|
|
70
|
-
reasoning:
|
|
74
|
+
reasoning: Reasoning[];
|
|
71
75
|
};
|
|
72
76
|
decisiveness: {
|
|
73
77
|
score: number;
|
|
74
|
-
reasoning:
|
|
78
|
+
reasoning: Reasoning[];
|
|
75
79
|
};
|
|
76
80
|
accommodating: {
|
|
77
81
|
score: number;
|
|
78
|
-
reasoning:
|
|
82
|
+
reasoning: Reasoning[];
|
|
79
83
|
};
|
|
80
84
|
independence: {
|
|
81
85
|
score: number;
|
|
82
|
-
reasoning:
|
|
86
|
+
reasoning: Reasoning[];
|
|
83
87
|
};
|
|
84
88
|
objectiveJudgment: {
|
|
85
89
|
score: number;
|
|
86
|
-
reasoning:
|
|
90
|
+
reasoning: Reasoning[];
|
|
87
91
|
};
|
|
88
92
|
}
|
|
89
93
|
interface Interests {
|
|
@@ -30,12 +30,12 @@ interface Process {
|
|
|
30
30
|
text: string;
|
|
31
31
|
finishDate: number;
|
|
32
32
|
}
|
|
33
|
-
interface
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
interface PageNumber {
|
|
34
|
+
minPage: number;
|
|
35
|
+
maxPage: number;
|
|
36
36
|
}
|
|
37
37
|
interface ParamOptions {
|
|
38
|
-
|
|
38
|
+
pageNumbers: PageNumber[];
|
|
39
39
|
scopes: string[];
|
|
40
40
|
}
|
|
41
41
|
export declare enum AiTaskResearchManagerOutputPresentationSubmissionStatus {
|
|
@@ -51,7 +51,7 @@ export interface IAiTaskResearchManagerOutputPresentationSubmission extends Base
|
|
|
51
51
|
process: Process;
|
|
52
52
|
paramOptions: ParamOptions;
|
|
53
53
|
params: {
|
|
54
|
-
|
|
54
|
+
pageNumber: number;
|
|
55
55
|
scopes: string[];
|
|
56
56
|
additionalScope: string;
|
|
57
57
|
name: string;
|