gemcap-be-common 1.5.104 → 1.5.105
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/models/AiJob.model.d.ts +5 -5
- package/models/AiJob.model.js +0 -12
- package/models/AiJob.model.ts +5 -17
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/models/AiJob.model.d.ts
CHANGED
|
@@ -33,8 +33,8 @@ export interface IAIJob {
|
|
|
33
33
|
taskId: string;
|
|
34
34
|
userId: string;
|
|
35
35
|
status: TTaskStatus;
|
|
36
|
-
inputFileIds
|
|
37
|
-
anthropicInputFileIds
|
|
36
|
+
inputFileIds?: string[];
|
|
37
|
+
anthropicInputFileIds?: string[];
|
|
38
38
|
anthropicOutputFileIds?: string[];
|
|
39
39
|
resultFiles?: Array<{
|
|
40
40
|
fileId: string;
|
|
@@ -44,9 +44,9 @@ export interface IAIJob {
|
|
|
44
44
|
size?: number;
|
|
45
45
|
}>;
|
|
46
46
|
userPrompt?: string;
|
|
47
|
-
provider
|
|
48
|
-
model
|
|
49
|
-
skillId
|
|
47
|
+
provider?: string;
|
|
48
|
+
model?: string;
|
|
49
|
+
skillId?: string;
|
|
50
50
|
responseText?: string;
|
|
51
51
|
rawResponse?: unknown;
|
|
52
52
|
errorMessage?: string;
|
package/models/AiJob.model.js
CHANGED
|
@@ -21,15 +21,12 @@ exports.AIJobSchema = new mongoose_1.default.Schema({
|
|
|
21
21
|
},
|
|
22
22
|
inputFileIds: [{
|
|
23
23
|
type: String,
|
|
24
|
-
required: true,
|
|
25
24
|
}],
|
|
26
25
|
anthropicInputFileIds: [{
|
|
27
26
|
type: String,
|
|
28
|
-
required: true,
|
|
29
27
|
}],
|
|
30
28
|
anthropicOutputFileIds: [{
|
|
31
29
|
type: String,
|
|
32
|
-
required: false,
|
|
33
30
|
}],
|
|
34
31
|
resultFiles: [{
|
|
35
32
|
fileId: {
|
|
@@ -55,39 +52,30 @@ exports.AIJobSchema = new mongoose_1.default.Schema({
|
|
|
55
52
|
}],
|
|
56
53
|
userPrompt: {
|
|
57
54
|
type: String,
|
|
58
|
-
required: false,
|
|
59
55
|
},
|
|
60
56
|
provider: {
|
|
61
57
|
type: String,
|
|
62
|
-
required: true,
|
|
63
58
|
},
|
|
64
59
|
model: {
|
|
65
60
|
type: String,
|
|
66
|
-
required: true,
|
|
67
61
|
},
|
|
68
62
|
skillId: {
|
|
69
63
|
type: String,
|
|
70
|
-
required: true,
|
|
71
64
|
},
|
|
72
65
|
responseText: {
|
|
73
66
|
type: String,
|
|
74
|
-
required: false,
|
|
75
67
|
},
|
|
76
68
|
rawResponse: {
|
|
77
69
|
type: mongoose_1.default.Schema.Types.Mixed,
|
|
78
|
-
required: false,
|
|
79
70
|
},
|
|
80
71
|
errorMessage: {
|
|
81
72
|
type: String,
|
|
82
|
-
required: true,
|
|
83
73
|
},
|
|
84
74
|
startedAt: {
|
|
85
75
|
type: Date,
|
|
86
|
-
required: true,
|
|
87
76
|
},
|
|
88
77
|
completedAt: {
|
|
89
78
|
type: Date,
|
|
90
|
-
required: true,
|
|
91
79
|
},
|
|
92
80
|
}, {
|
|
93
81
|
timestamps: { createdAt: true, updatedAt: true },
|
package/models/AiJob.model.ts
CHANGED
|
@@ -9,8 +9,8 @@ export interface IAIJob {
|
|
|
9
9
|
|
|
10
10
|
status: TTaskStatus;
|
|
11
11
|
|
|
12
|
-
inputFileIds
|
|
13
|
-
anthropicInputFileIds
|
|
12
|
+
inputFileIds?: string[];
|
|
13
|
+
anthropicInputFileIds?: string[];
|
|
14
14
|
|
|
15
15
|
anthropicOutputFileIds?: string[];
|
|
16
16
|
|
|
@@ -23,9 +23,9 @@ export interface IAIJob {
|
|
|
23
23
|
}>;
|
|
24
24
|
|
|
25
25
|
userPrompt?: string;
|
|
26
|
-
provider
|
|
27
|
-
model
|
|
28
|
-
skillId
|
|
26
|
+
provider?: string,
|
|
27
|
+
model?: string;
|
|
28
|
+
skillId?: string;
|
|
29
29
|
|
|
30
30
|
responseText?: string;
|
|
31
31
|
rawResponse?: unknown;
|
|
@@ -68,15 +68,12 @@ export const AIJobSchema = new mongoose.Schema<IAIJob, TAIJobModel>(
|
|
|
68
68
|
},
|
|
69
69
|
inputFileIds: [{
|
|
70
70
|
type: String,
|
|
71
|
-
required: true,
|
|
72
71
|
}],
|
|
73
72
|
anthropicInputFileIds: [{
|
|
74
73
|
type: String,
|
|
75
|
-
required: true,
|
|
76
74
|
}],
|
|
77
75
|
anthropicOutputFileIds: [{
|
|
78
76
|
type: String,
|
|
79
|
-
required: false,
|
|
80
77
|
}],
|
|
81
78
|
|
|
82
79
|
resultFiles: [{
|
|
@@ -104,39 +101,30 @@ export const AIJobSchema = new mongoose.Schema<IAIJob, TAIJobModel>(
|
|
|
104
101
|
|
|
105
102
|
userPrompt: {
|
|
106
103
|
type: String,
|
|
107
|
-
required: false,
|
|
108
104
|
},
|
|
109
105
|
provider: {
|
|
110
106
|
type: String,
|
|
111
|
-
required: true,
|
|
112
107
|
},
|
|
113
108
|
model: {
|
|
114
109
|
type: String,
|
|
115
|
-
required: true,
|
|
116
110
|
},
|
|
117
111
|
skillId: {
|
|
118
112
|
type: String,
|
|
119
|
-
required: true,
|
|
120
113
|
},
|
|
121
114
|
responseText: {
|
|
122
115
|
type: String,
|
|
123
|
-
required: false,
|
|
124
116
|
},
|
|
125
117
|
rawResponse: {
|
|
126
118
|
type: mongoose.Schema.Types.Mixed,
|
|
127
|
-
required: false,
|
|
128
119
|
},
|
|
129
120
|
errorMessage: {
|
|
130
121
|
type: String,
|
|
131
|
-
required: true,
|
|
132
122
|
},
|
|
133
123
|
startedAt: {
|
|
134
124
|
type: Date,
|
|
135
|
-
required: true,
|
|
136
125
|
},
|
|
137
126
|
completedAt: {
|
|
138
127
|
type: Date,
|
|
139
|
-
required: true,
|
|
140
128
|
},
|
|
141
129
|
},
|
|
142
130
|
{
|