@futdevpro/nts-dynamo 1.11.35 → 1.11.37
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/.github/workflows/main.yml +189 -234
- package/build/_modules/discord-assistant/_services/dias.service-base.d.ts +3 -1
- package/build/_modules/discord-assistant/_services/dias.service-base.d.ts.map +1 -1
- package/build/_modules/discord-assistant/_services/dias.service-base.js +4 -2
- package/build/_modules/discord-assistant/_services/dias.service-base.js.map +1 -1
- package/build/_modules/discord-assistant-voiced/index.js +15 -12
- package/build/_modules/discord-assistant-voiced/index.js.map +1 -1
- package/build/_modules/discord-bot/_collections/dibo-operations.util.js +3 -3
- package/build/_modules/discord-bot/_collections/dibo-operations.util.js.map +1 -1
- package/build/_modules/discord-bot/_services/dibo-io.control-service.js +3 -3
- package/build/_modules/discord-bot/_services/dibo-io.control-service.js.map +1 -1
- package/build/_modules/discord-bot/_services/dibo-main.control-service.d.ts.map +1 -1
- package/build/_modules/discord-bot/_services/dibo-main.control-service.js +7 -3
- package/build/_modules/discord-bot/_services/dibo-main.control-service.js.map +1 -1
- package/build/_modules/discord-bot/index.js +7 -6
- package/build/_modules/discord-bot/index.js.map +1 -1
- package/build/_modules/oauth2/index.js +7 -6
- package/build/_modules/oauth2/index.js.map +1 -1
- package/build/_modules/open-ai/_services/oai-llm-chat.service-base.d.ts +0 -15
- package/build/_modules/open-ai/_services/oai-llm-chat.service-base.d.ts.map +1 -1
- package/build/_modules/open-ai/_services/oai-llm-chat.service-base.js +31 -16
- package/build/_modules/open-ai/_services/oai-llm-chat.service-base.js.map +1 -1
- package/build/_modules/open-ai/_services/oai-llm.service-base.d.ts +0 -139
- package/build/_modules/open-ai/_services/oai-llm.service-base.d.ts.map +1 -1
- package/build/_modules/open-ai/_services/oai-llm.service-base.js +16 -16
- package/build/_modules/open-ai/_services/oai-llm.service-base.js.map +1 -1
- package/build/_modules/open-ai/index.js +7 -6
- package/build/_modules/open-ai/index.js.map +1 -1
- package/build/_modules/socket/index.js +15 -12
- package/build/_modules/socket/index.js.map +1 -1
- package/build/_services/base/data.service.d.ts.map +1 -1
- package/build/_services/base/data.service.js +3 -0
- package/build/_services/base/data.service.js.map +1 -1
- package/build/_services/core/api.service.d.ts.map +1 -1
- package/build/_services/core/api.service.js +1 -1
- package/build/_services/core/api.service.js.map +1 -1
- package/build/_services/route/routing-module.service.d.ts.map +1 -1
- package/build/_services/route/routing-module.service.js +2 -1
- package/build/_services/route/routing-module.service.js.map +1 -1
- package/package.json +6 -5
- package/src/_modules/discord-assistant/_services/dias.service-base.ts +8 -2
- package/src/_modules/discord-assistant-voiced/index.ts +2 -2
- package/src/_modules/discord-bot/_collections/dibo-operations.util.ts +3 -3
- package/src/_modules/discord-bot/_services/dibo-io.control-service.ts +3 -3
- package/src/_modules/discord-bot/_services/dibo-main.control-service.ts +16 -3
- package/src/_modules/discord-bot/index.ts +2 -2
- package/src/_modules/oauth2/index.ts +2 -2
- package/src/_modules/open-ai/_services/oai-llm-chat.service-base.ts +30 -16
- package/src/_modules/open-ai/_services/oai-llm.service-base.ts +16 -16
- package/src/_modules/open-ai/index.ts +2 -2
- package/src/_modules/socket/index.ts +2 -2
- package/src/_services/base/data.service.ts +6 -0
- package/src/_services/core/api.service.ts +5 -2
- package/src/_services/route/routing-module.service.ts +2 -1
- package/tsconfig.json +11 -11
- package/test.ts +0 -0
- package/test2.js +0 -1
- package/test2.ts +0 -0
|
@@ -37,14 +37,6 @@ export declare class DyNTS_OAI_LLM_ServiceBase {
|
|
|
37
37
|
replaceThisInLog?: string;
|
|
38
38
|
}): Promise<boolean>;
|
|
39
39
|
/** the exact same as {@link askYesNoQuestion} */
|
|
40
|
-
yesNoQuestion: (set: {
|
|
41
|
-
question: string;
|
|
42
|
-
issuer: string;
|
|
43
|
-
settings?: DyFM_GPTCall_Settings;
|
|
44
|
-
debugLog?: boolean;
|
|
45
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
46
|
-
replaceThisInLog?: string;
|
|
47
|
-
}) => Promise<boolean>;
|
|
48
40
|
/**
|
|
49
41
|
* Asks the AI to answer a percentage question
|
|
50
42
|
*
|
|
@@ -59,14 +51,6 @@ export declare class DyNTS_OAI_LLM_ServiceBase {
|
|
|
59
51
|
replaceThisInLog?: string;
|
|
60
52
|
}): Promise<number>;
|
|
61
53
|
/** the exact same as {@link askPercentageQuestion} */
|
|
62
|
-
percentageQuestion: (set: {
|
|
63
|
-
question: string;
|
|
64
|
-
issuer: string;
|
|
65
|
-
settings?: DyFM_GPTCall_Settings;
|
|
66
|
-
debugLog?: boolean;
|
|
67
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
68
|
-
replaceThisInLog?: string;
|
|
69
|
-
}) => Promise<number>;
|
|
70
54
|
/**
|
|
71
55
|
* Asks the AI to select one of the options from the list
|
|
72
56
|
*
|
|
@@ -82,15 +66,6 @@ export declare class DyNTS_OAI_LLM_ServiceBase {
|
|
|
82
66
|
replaceThisInLog?: string;
|
|
83
67
|
}): Promise<string>;
|
|
84
68
|
/** the exact same as {@link askSelectQuestion} */
|
|
85
|
-
selectQuestion: (set: {
|
|
86
|
-
question: string;
|
|
87
|
-
selectFrom: string[];
|
|
88
|
-
issuer: string;
|
|
89
|
-
settings?: DyFM_GPTCall_Settings;
|
|
90
|
-
debugLog?: boolean;
|
|
91
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
92
|
-
replaceThisInLog?: string;
|
|
93
|
-
}) => Promise<string>;
|
|
94
69
|
/**
|
|
95
70
|
* Asks the AI to select one of the options from the list
|
|
96
71
|
* Similar to {@link askSelectQuestion},
|
|
@@ -110,17 +85,6 @@ export declare class DyNTS_OAI_LLM_ServiceBase {
|
|
|
110
85
|
unparsableResult: string;
|
|
111
86
|
}>;
|
|
112
87
|
/** the exact same as {@link requestSelect} */
|
|
113
|
-
selectRequest: <T>(set: {
|
|
114
|
-
question: string;
|
|
115
|
-
selectFrom: T[];
|
|
116
|
-
issuer: string;
|
|
117
|
-
settings?: DyFM_GPTCall_Settings;
|
|
118
|
-
debugLog?: boolean;
|
|
119
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
120
|
-
replaceThisInLog?: string;
|
|
121
|
-
}) => Promise<T | {
|
|
122
|
-
unparsableResult: string;
|
|
123
|
-
}>;
|
|
124
88
|
/**
|
|
125
89
|
* Asks the AI to select one or more of the options from the list
|
|
126
90
|
*
|
|
@@ -136,15 +100,6 @@ export declare class DyNTS_OAI_LLM_ServiceBase {
|
|
|
136
100
|
replaceThisInLog?: string;
|
|
137
101
|
}): Promise<string[]>;
|
|
138
102
|
/** the exact same as {@link askMultipleSelectQuestionWithOptions} */
|
|
139
|
-
multipleSelectQuestion: (set: {
|
|
140
|
-
question: string;
|
|
141
|
-
options: string[];
|
|
142
|
-
issuer: string;
|
|
143
|
-
settings?: DyFM_GPTCall_Settings;
|
|
144
|
-
debugLog?: boolean;
|
|
145
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
146
|
-
replaceThisInLog?: string;
|
|
147
|
-
}) => Promise<string[]>;
|
|
148
103
|
/**
|
|
149
104
|
* Asks the AI to select one or more of the options from the list
|
|
150
105
|
* Similar to {@link askMultipleSelectQuestionWithOptions},
|
|
@@ -162,15 +117,6 @@ export declare class DyNTS_OAI_LLM_ServiceBase {
|
|
|
162
117
|
replaceThisInLog?: string;
|
|
163
118
|
}): Promise<T[]>;
|
|
164
119
|
/** the exact same as {@link requestMultipleSelect} */
|
|
165
|
-
multipleSelectRequest: <T>(set: {
|
|
166
|
-
question: string;
|
|
167
|
-
options: T[];
|
|
168
|
-
issuer: string;
|
|
169
|
-
settings?: DyFM_GPTCall_Settings;
|
|
170
|
-
debugLog?: boolean;
|
|
171
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
172
|
-
replaceThisInLog?: string;
|
|
173
|
-
}) => Promise<T[]>;
|
|
174
120
|
/**
|
|
175
121
|
* Asks the AI to answer a question that must result a JSON object
|
|
176
122
|
*
|
|
@@ -191,16 +137,6 @@ export declare class DyNTS_OAI_LLM_ServiceBase {
|
|
|
191
137
|
unparsableResult: string;
|
|
192
138
|
}>;
|
|
193
139
|
/** the exact same as {@link askJSONQuestion} */
|
|
194
|
-
jsonQuestion: <T = any>(set: {
|
|
195
|
-
question: string;
|
|
196
|
-
issuer: string;
|
|
197
|
-
settings?: DyFM_GPTCall_Settings;
|
|
198
|
-
debugLog?: boolean;
|
|
199
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
200
|
-
replaceThisInLog?: string;
|
|
201
|
-
}) => Promise<T | {
|
|
202
|
-
unparsableResult: string;
|
|
203
|
-
}>;
|
|
204
140
|
/**
|
|
205
141
|
* Asks the AI to answer a question that must result a JSON object with specific key descriptions
|
|
206
142
|
*
|
|
@@ -222,17 +158,6 @@ export declare class DyNTS_OAI_LLM_ServiceBase {
|
|
|
222
158
|
unparsableResult: string;
|
|
223
159
|
}>;
|
|
224
160
|
/** the exact same as {@link askJSONQuestionWithKeysDescription} */
|
|
225
|
-
jsonQuestionWithKeysDescription: <T = any>(set: {
|
|
226
|
-
question: string;
|
|
227
|
-
keysDescription: string;
|
|
228
|
-
issuer: string;
|
|
229
|
-
settings?: DyFM_GPTCall_Settings;
|
|
230
|
-
debugLog?: boolean;
|
|
231
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
232
|
-
replaceThisInLog?: string;
|
|
233
|
-
}) => Promise<T | {
|
|
234
|
-
unparsableResult: string;
|
|
235
|
-
}>;
|
|
236
161
|
/**
|
|
237
162
|
* Asks the AI to answer a question that must result a JSON object with specific keys
|
|
238
163
|
*
|
|
@@ -254,17 +179,6 @@ export declare class DyNTS_OAI_LLM_ServiceBase {
|
|
|
254
179
|
unparsableResult: string;
|
|
255
180
|
}>;
|
|
256
181
|
/** the exact same as {@link askJSONQuestionWithExactKeys} */
|
|
257
|
-
jsonQuestionWithExactKeys: <T = any>(set: {
|
|
258
|
-
question: string;
|
|
259
|
-
keys: string[];
|
|
260
|
-
issuer: string;
|
|
261
|
-
settings?: DyFM_GPTCall_Settings;
|
|
262
|
-
debugLog?: boolean;
|
|
263
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
264
|
-
replaceThisInLog?: string;
|
|
265
|
-
}) => Promise<T | {
|
|
266
|
-
unparsableResult: string;
|
|
267
|
-
}>;
|
|
268
182
|
/**
|
|
269
183
|
* Asks the AI to answer a question that must result a list of strings
|
|
270
184
|
*
|
|
@@ -283,23 +197,7 @@ export declare class DyNTS_OAI_LLM_ServiceBase {
|
|
|
283
197
|
replaceThisInLog?: string;
|
|
284
198
|
}): Promise<string[]>;
|
|
285
199
|
/** the exact same as {@link askListQuestion} */
|
|
286
|
-
listQuestion: (set: {
|
|
287
|
-
question: string;
|
|
288
|
-
issuer: string;
|
|
289
|
-
settings?: DyFM_GPTCall_Settings;
|
|
290
|
-
debugLog?: boolean;
|
|
291
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
292
|
-
replaceThisInLog?: string;
|
|
293
|
-
}) => Promise<string[]>;
|
|
294
200
|
/** the exact same as {@link askListQuestion} */
|
|
295
|
-
listRequest: (set: {
|
|
296
|
-
question: string;
|
|
297
|
-
issuer: string;
|
|
298
|
-
settings?: DyFM_GPTCall_Settings;
|
|
299
|
-
debugLog?: boolean;
|
|
300
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
301
|
-
replaceThisInLog?: string;
|
|
302
|
-
}) => Promise<string[]>;
|
|
303
201
|
/**
|
|
304
202
|
* Asks the AI to answer a question
|
|
305
203
|
*
|
|
@@ -314,41 +212,9 @@ export declare class DyNTS_OAI_LLM_ServiceBase {
|
|
|
314
212
|
replaceThisInLog?: string;
|
|
315
213
|
}): Promise<string>;
|
|
316
214
|
/** the exact same as {@link askQuestion} */
|
|
317
|
-
answer: (set: {
|
|
318
|
-
question: string;
|
|
319
|
-
issuer: string;
|
|
320
|
-
settings?: DyFM_GPTCall_Settings;
|
|
321
|
-
debugLog?: boolean;
|
|
322
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
323
|
-
replaceThisInLog?: string;
|
|
324
|
-
}) => Promise<string>;
|
|
325
215
|
/** the exact same as {@link askQuestion} */
|
|
326
|
-
getQuestionAnswer: (set: {
|
|
327
|
-
question: string;
|
|
328
|
-
issuer: string;
|
|
329
|
-
settings?: DyFM_GPTCall_Settings;
|
|
330
|
-
debugLog?: boolean;
|
|
331
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
332
|
-
replaceThisInLog?: string;
|
|
333
|
-
}) => Promise<string>;
|
|
334
216
|
/** the exact same as {@link askQuestion} */
|
|
335
|
-
simpleQuestion: (set: {
|
|
336
|
-
question: string;
|
|
337
|
-
issuer: string;
|
|
338
|
-
settings?: DyFM_GPTCall_Settings;
|
|
339
|
-
debugLog?: boolean;
|
|
340
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
341
|
-
replaceThisInLog?: string;
|
|
342
|
-
}) => Promise<string>;
|
|
343
217
|
/** the exact same as {@link askQuestion} */
|
|
344
|
-
askSimpleQuestion: (set: {
|
|
345
|
-
question: string;
|
|
346
|
-
issuer: string;
|
|
347
|
-
settings?: DyFM_GPTCall_Settings;
|
|
348
|
-
debugLog?: boolean;
|
|
349
|
-
/** this is used to readably replace too long contents to eg '...' in logs */
|
|
350
|
-
replaceThisInLog?: string;
|
|
351
|
-
}) => Promise<string>;
|
|
352
218
|
/**
|
|
353
219
|
* Resolves a simple user message and returns the answer as string
|
|
354
220
|
*
|
|
@@ -360,11 +226,6 @@ export declare class DyNTS_OAI_LLM_ServiceBase {
|
|
|
360
226
|
settings?: DyFM_GPTCall_Settings;
|
|
361
227
|
}): Promise<string>;
|
|
362
228
|
/** the exact same as {@link resolveSimpleUserMessage} */
|
|
363
|
-
simpleUserMessage: (set: {
|
|
364
|
-
message: string;
|
|
365
|
-
issuer: string;
|
|
366
|
-
settings?: DyFM_GPTCall_Settings;
|
|
367
|
-
}) => Promise<string>;
|
|
368
229
|
/**
|
|
369
230
|
* Resolves a conversation
|
|
370
231
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oai-llm.service-base.d.ts","sourceRoot":"","sources":["../../../../src/_modules/open-ai/_services/oai-llm.service-base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAEhC,OAAO,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AAC9G,OAAO,EAAE,aAAa,EAAc,mBAAmB,EAAuC,MAAM,uBAAuB,CAAC;AAG5H,OAAO,EAAE,qBAAqB,EAAE,MAAM,iDAAiD,CAAC;AACxF,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,8BAA8B,EAA8B,MAAM,mCAAmC,CAAC;AAE/G,OAAO,EAAE,iCAAiC,EAAE,MAAM,6DAA6D,CAAC;AAKhH;;;;;;GAMG;AAIH,qBAAa,yBAAyB;IAEpC,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAEmB;IAEvD,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IAIxB,QAAQ,CAAC,eAAe,EAAE,qBAAqB,CAAC;IAEhD,IAAI,QAAQ,IAAI,OAAO,CAEtB;IAED,IAAI,mBAAmB,IAAI,MAAM,CAEhC;IAED,IAAI,YAAY,IAAI,gBAAgB,GAAG,MAAM,CAE5C;IAED,kBAAkB,EAAE,iCAAiC,CACX;gBAGxC,GAAG,CAAC,EAAE,oBAAoB;IAkB5B,QAAQ,CAAC,kBAAkB,EAAE,MAAM,CAAwB;IAI3D;;;;;OAKG;IACG,gBAAgB,CACpB,GAAG,EAAE;QACH,QAAQ,EAAE,MAAM,CAAC;QACjB,MAAM,EAAE,MAAM,CAAC;QACf,QAAQ,CAAC,EAAE,qBAAqB,CAAC;QACjC,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB,6EAA6E;QAC7E,gBAAgB,CAAC,EAAE,MAAM,CAAA;KAC1B,GACA,OAAO,CAAC,OAAO,CAAC;IAOnB,iDAAiD;
|
|
1
|
+
{"version":3,"file":"oai-llm.service-base.d.ts","sourceRoot":"","sources":["../../../../src/_modules/open-ai/_services/oai-llm.service-base.ts"],"names":[],"mappings":"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"}
|
|
@@ -59,7 +59,7 @@ class DyNTS_OAI_LLM_ServiceBase {
|
|
|
59
59
|
return answer.toUpperCase().includes(this.predefinedRequests.yesNo.upperCaseYes);
|
|
60
60
|
}
|
|
61
61
|
/** the exact same as {@link askYesNoQuestion} */
|
|
62
|
-
yesNoQuestion = this.askYesNoQuestion;
|
|
62
|
+
//yesNoQuestion = this.askYesNoQuestion;
|
|
63
63
|
/**
|
|
64
64
|
* Asks the AI to answer a percentage question
|
|
65
65
|
*
|
|
@@ -78,7 +78,7 @@ class DyNTS_OAI_LLM_ServiceBase {
|
|
|
78
78
|
return +answer;
|
|
79
79
|
}
|
|
80
80
|
/** the exact same as {@link askPercentageQuestion} */
|
|
81
|
-
percentageQuestion = this.askPercentageQuestion;
|
|
81
|
+
//percentageQuestion = this.askPercentageQuestion;
|
|
82
82
|
/**
|
|
83
83
|
* Asks the AI to select one of the options from the list
|
|
84
84
|
*
|
|
@@ -97,7 +97,7 @@ class DyNTS_OAI_LLM_ServiceBase {
|
|
|
97
97
|
return null;
|
|
98
98
|
}
|
|
99
99
|
/** the exact same as {@link askSelectQuestion} */
|
|
100
|
-
selectQuestion = this.askSelectQuestion;
|
|
100
|
+
//selectQuestion = this.askSelectQuestion;
|
|
101
101
|
/**
|
|
102
102
|
* Asks the AI to select one of the options from the list
|
|
103
103
|
* Similar to {@link askSelectQuestion},
|
|
@@ -112,7 +112,7 @@ class DyNTS_OAI_LLM_ServiceBase {
|
|
|
112
112
|
return fsm_dynamo_1.DyFM_Object.safeParseJSON(answer);
|
|
113
113
|
}
|
|
114
114
|
/** the exact same as {@link requestSelect} */
|
|
115
|
-
selectRequest = this.requestSelect;
|
|
115
|
+
//selectRequest = this.requestSelect;
|
|
116
116
|
/**
|
|
117
117
|
* Asks the AI to select one or more of the options from the list
|
|
118
118
|
*
|
|
@@ -132,7 +132,7 @@ class DyNTS_OAI_LLM_ServiceBase {
|
|
|
132
132
|
return result;
|
|
133
133
|
}
|
|
134
134
|
/** the exact same as {@link askMultipleSelectQuestionWithOptions} */
|
|
135
|
-
multipleSelectQuestion = this.askMultipleSelectQuestionWithOptions;
|
|
135
|
+
//multipleSelectQuestion = this.askMultipleSelectQuestionWithOptions;
|
|
136
136
|
/**
|
|
137
137
|
* Asks the AI to select one or more of the options from the list
|
|
138
138
|
* Similar to {@link askMultipleSelectQuestionWithOptions},
|
|
@@ -147,7 +147,7 @@ class DyNTS_OAI_LLM_ServiceBase {
|
|
|
147
147
|
return fsm_dynamo_1.DyFM_Object.safeParseList(answer);
|
|
148
148
|
}
|
|
149
149
|
/** the exact same as {@link requestMultipleSelect} */
|
|
150
|
-
multipleSelectRequest = this.requestMultipleSelect;
|
|
150
|
+
//multipleSelectRequest = this.requestMultipleSelect;
|
|
151
151
|
/**
|
|
152
152
|
* Asks the AI to answer a question that must result a JSON object
|
|
153
153
|
*
|
|
@@ -163,7 +163,7 @@ class DyNTS_OAI_LLM_ServiceBase {
|
|
|
163
163
|
return fsm_dynamo_1.DyFM_Object.safeParseJSON(answer);
|
|
164
164
|
}
|
|
165
165
|
/** the exact same as {@link askJSONQuestion} */
|
|
166
|
-
jsonQuestion = this.askJSONQuestion;
|
|
166
|
+
//jsonQuestion = this.askJSONQuestion;
|
|
167
167
|
/**
|
|
168
168
|
* Asks the AI to answer a question that must result a JSON object with specific key descriptions
|
|
169
169
|
*
|
|
@@ -180,7 +180,7 @@ class DyNTS_OAI_LLM_ServiceBase {
|
|
|
180
180
|
return fsm_dynamo_1.DyFM_Object.safeParseJSON(answer);
|
|
181
181
|
}
|
|
182
182
|
/** the exact same as {@link askJSONQuestionWithKeysDescription} */
|
|
183
|
-
jsonQuestionWithKeysDescription = this.askJSONQuestionWithKeysDescription;
|
|
183
|
+
//jsonQuestionWithKeysDescription = this.askJSONQuestionWithKeysDescription;
|
|
184
184
|
/**
|
|
185
185
|
* Asks the AI to answer a question that must result a JSON object with specific keys
|
|
186
186
|
*
|
|
@@ -197,7 +197,7 @@ class DyNTS_OAI_LLM_ServiceBase {
|
|
|
197
197
|
return fsm_dynamo_1.DyFM_Object.safeParseJSON(answer);
|
|
198
198
|
}
|
|
199
199
|
/** the exact same as {@link askJSONQuestionWithExactKeys} */
|
|
200
|
-
jsonQuestionWithExactKeys = this.askJSONQuestionWithExactKeys;
|
|
200
|
+
//jsonQuestionWithExactKeys = this.askJSONQuestionWithExactKeys;
|
|
201
201
|
/**
|
|
202
202
|
* Asks the AI to answer a question that must result a list of strings
|
|
203
203
|
*
|
|
@@ -213,9 +213,9 @@ class DyNTS_OAI_LLM_ServiceBase {
|
|
|
213
213
|
return fsm_dynamo_1.DyFM_Object.safeParseList(answer);
|
|
214
214
|
}
|
|
215
215
|
/** the exact same as {@link askListQuestion} */
|
|
216
|
-
listQuestion = this.askListQuestion;
|
|
216
|
+
//listQuestion = this.askListQuestion;
|
|
217
217
|
/** the exact same as {@link askListQuestion} */
|
|
218
|
-
listRequest = this.askListQuestion;
|
|
218
|
+
//listRequest = this.askListQuestion;
|
|
219
219
|
/**
|
|
220
220
|
* Asks the AI to answer a question
|
|
221
221
|
*
|
|
@@ -234,13 +234,13 @@ class DyNTS_OAI_LLM_ServiceBase {
|
|
|
234
234
|
return answer;
|
|
235
235
|
}
|
|
236
236
|
/** the exact same as {@link askQuestion} */
|
|
237
|
-
answer = this.askQuestion;
|
|
237
|
+
//answer = this.askQuestion;
|
|
238
238
|
/** the exact same as {@link askQuestion} */
|
|
239
|
-
getQuestionAnswer = this.askQuestion;
|
|
239
|
+
//getQuestionAnswer = this.askQuestion;
|
|
240
240
|
/** the exact same as {@link askQuestion} */
|
|
241
|
-
simpleQuestion = this.askQuestion;
|
|
241
|
+
//simpleQuestion = this.askQuestion;
|
|
242
242
|
/** the exact same as {@link askQuestion} */
|
|
243
|
-
askSimpleQuestion = this.askQuestion;
|
|
243
|
+
//askSimpleQuestion = this.askQuestion;
|
|
244
244
|
// async askJSONListQuestion(
|
|
245
245
|
// question: string,
|
|
246
246
|
// issuer: string,
|
|
@@ -269,7 +269,7 @@ class DyNTS_OAI_LLM_ServiceBase {
|
|
|
269
269
|
});
|
|
270
270
|
}
|
|
271
271
|
/** the exact same as {@link resolveSimpleUserMessage} */
|
|
272
|
-
simpleUserMessage = this.resolveSimpleUserMessage;
|
|
272
|
+
//simpleUserMessage = this.resolveSimpleUserMessage;
|
|
273
273
|
//#endregion
|
|
274
274
|
/**
|
|
275
275
|
* Resolves a conversation
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oai-llm.service-base.js","sourceRoot":"","sources":["../../../../src/_modules/open-ai/_services/oai-llm.service-base.ts"],"names":[],"mappings":";;;AAAA,mCAAgC;AAEhC,2DAA8G;AAC9G,sDAA4H;AAE5H,uFAAoF;AAIpF,mFAAiF;AAEjF,yFAAsF;AACtF,yGAA4G;AAG5G;;;;;;GAMG;AAEH,kCAAkC;AAElC,MAAa,yBAAyB;IAE3B,mBAAmB,GAC1B,qDAAqD;QACrD,oDAAoD,CAAC;IAE9C,MAAM,CAAS;IAExB;wDACoD;IAC3C,eAAe,CAAwB;IAEhD,IAAI,QAAQ;QACV,OAAO,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC;IACvC,CAAC;IAED,IAAI,mBAAmB;QACrB,OAAO,IAAI,CAAC,eAAe,CAAC,YAAY,CAAC;IAC3C,CAAC;IAED,IAAI,YAAY;QACd,OAAO,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC;IACvC,CAAC;IAED,kBAAkB,GAChB,2EAAuC,CAAC;IAE1C,YACE,GAA0B;QAE1B,6CAAqB,CAAC,eAAe,KAAK,qDAAyB,CAAC;QAEpE,IAAI,CAAC,MAAM,GAAG,IAAI,eAAM,CACtB,GAAG,EAAE,YAAY;YACjB;gBACE,YAAY,EAAE,6CAAqB,CAAC,YAAY,CAAC,MAAM,CAAC,YAAY;gBACpE,MAAM,EAAE,6CAAqB,CAAC,YAAY,CAAC,MAAM,CAAC,MAAM;gBACxD,OAAO,EAAE,6CAAqB,CAAC,YAAY,CAAC,MAAM,CAAC,OAAO;aAC3D,CACF,CAAC;QAEF,IAAI,CAAC,eAAe,GAAG,GAAG,EAAE,eAAe;YACzC,qDAAyB,CAAC,eAAe;YACzC,IAAI,+BAAqB,EAAE,CAAC;IAChC,CAAC;IAEQ,kBAAkB,GAAW,oBAAoB,CAAC;IAE3D,uBAAuB;IAEvB;;;;;OAKG;IACH,KAAK,CAAC,gBAAgB,CACpB,GAOC;QAED,GAAG,CAAC,QAAQ,IAAI,IAAI,CAAC,kBAAkB,CAAC,KAAK,CAAC,OAAO,CAAC;QAEtD,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;QAE3C,OAAO,MAAM,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,kBAAkB,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;IACnF,CAAC;IACD,iDAAiD;IACjD,
|
|
1
|
+
{"version":3,"file":"oai-llm.service-base.js","sourceRoot":"","sources":["../../../../src/_modules/open-ai/_services/oai-llm.service-base.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
/* try {
|
|
3
|
+
require.resolve('open-ai');
|
|
4
|
+
} catch {
|
|
5
|
+
console.log(
|
|
6
|
+
'❌ OpenAI package not found, please install it with: pnpm add open-ai'
|
|
7
|
+
);
|
|
8
|
+
} */
|
|
2
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
10
|
const tslib_1 = require("tslib");
|
|
4
|
-
try {
|
|
5
|
-
require.resolve('open-ai');
|
|
6
|
-
}
|
|
7
|
-
catch {
|
|
8
|
-
console.log('❌ OpenAI package not found, please install it with: pnpm add open-ai');
|
|
9
|
-
}
|
|
10
11
|
//
|
|
11
12
|
// OpenAI module
|
|
12
13
|
//
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/_modules/open-ai/index.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/_modules/open-ai/index.ts"],"names":[],"mappings":";AAQA;;;;;;IAMI;;;AAEJ,EAAE;AACF,gBAAgB;AAChB,EAAE;AACF,6DAA6D;AAC7D,+DAA+D;AAC/D,EAAE;AAGF,wEAA8C;AAE9C,cAAc;AACd,2EAAiD;AACjD,2EAAiD;AACjD,mFAAyD;AACzD,2FAAiE;AACjE,8FAAoE;AAEpE,QAAQ;AACR,gFAAsD;AACtD,6EAAmD;AAEnD,SAAS;AACT,6EAAmD;AACnD,oBAAoB;AACpB,kGAAwE;AACxE,iGAAuE;AACvE,2FAAiE;AACjE,6FAAmE;AACnE,yFAA+D;AAC/D,qGAA2E;AAC3E,iGAAuE;AAEvE,WAAW;AACX,6EAAmD;AACnD,oFAA0D;AAC1D,gFAAsD;AACtD,2EAAiD;AACjD,8EAAoD"}
|
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
console.log('❌ Socket.io package not found, please install it with: pnpm add socket.io');
|
|
2
|
+
/* try {
|
|
3
|
+
require.resolve('socket.io');
|
|
4
|
+
} catch (error) {
|
|
5
|
+
console.log(
|
|
6
|
+
'❌ Socket.io package not found, please install it with: pnpm add socket.io'
|
|
7
|
+
);
|
|
9
8
|
}
|
|
9
|
+
|
|
10
10
|
try {
|
|
11
|
-
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
require.resolve('socket.io-client');
|
|
12
|
+
} catch (error) {
|
|
13
|
+
console.log(
|
|
14
|
+
'❌ Socket.io-client package not found, please install it with: pnpm add socket.io-client'
|
|
15
|
+
);
|
|
16
|
+
} */
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
const tslib_1 = require("tslib");
|
|
16
19
|
//
|
|
17
20
|
// Socket.io module
|
|
18
21
|
//
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/_modules/socket/index.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/_modules/socket/index.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;IAcI;;;AAEJ,EAAE;AACF,mBAAmB;AACnB,EAAE;AACF,6FAA6F;AAC7F,8DAA8D;AAC9D,EAAE;AAGF,QAAQ;AACR,wEAA8C;AAG9C,SAAS;AACT,+FAAqE;AACrE,kFAAwD;AACxD,+FAAqE;AAGrE,WAAW;AACX,4EAAkD;AAClD,4EAAkD;AAClD,gEAAsC;AAEtC,uEAA6C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data.service.d.ts","sourceRoot":"","sources":["../../../src/_services/base/data.service.ts"],"names":[],"mappings":"AACA,OAAO,EACL,aAAa,EAEb,uBAAuB,EACvB,gBAAgB,EAGhB,aAAa,EAGb,YAAY,EAEZ,mBAAmB,EAGnB,aAAa,EAEb,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,kBAAkB,EACnB,MAAM,uBAAuB,CAAC;AAI/B,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AAEpE,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAI/C;;;;;;;;;;;;;;;;;;GAkBG;AACH,qBAAa,iBAAiB,CAAC,CAAC,SAAS,aAAa;IAiClD;;OAEG;IACI,IAAI,EAAE,CAAC;IACd;;OAEG;IAEI,UAAU,EAAE,gBAAgB,CAAC,CAAC,CAAC;IACtC;;OAEG;IACI,MAAM,EAAE,MAAM;IA3CvB,WAAW,EAAE,MAAM,CAAC;IAEpB,aAAa,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC;IAClC,sBAAsB,EAAE,OAAO,CAAC;IAGhC,QAAQ,EAAE,CAAC,EAAE,CAAM;IAGnB,QAAQ,CAAC,WAAW,EAAE;QACpB,GAAG,EAAE,MAAM,CAAC;QACZ,YAAY,EAAE,MAAM,CAAC;QACrB,WAAW,EAAE,OAAO,CAAC;QACrB,aAAa,EAAE,OAAO,CAAC;KACxB,EAAE,CAAM;IAKT,OAAO,CAAC,gBAAgB,CAAuB;IAI/C,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAEmB;IACvD,QAAQ,CAAC,6BAA6B,EAAE,MAAM,CAES;;IAGrD;;OAEG;IACI,IAAI,EAAE,CAAC;IACd;;OAEG;IAEI,UAAU,EAAE,gBAAgB,CAAC,CAAC,CAAC;IACtC;;OAEG;IACI,MAAM,EAAE,MAAM;IAkCvB,qBAAqB,IAAI,wBAAwB,CAAC,CAAC,CAAC;IAWpD;;OAEG;IACG,MAAM,CAAC,gBAAgB,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IA0BtD;;;;;;;;;;;;;;;;;;OAkBG;IACG,WAAW,CACf,EAAE,CAAC,EAAE,MAAM,EACX,gBAAgB,CAAC,EAAE,OAAO,EAC1B,eAAe,CAAC,EAAE,OAAO,GACxB,OAAO,CAAC,CAAC,CAAC;IA4CP,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,EAAE,gBAAgB,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IAiCrE,gBAAgB,CAAC,GAAG,EAAE,MAAM,EAAE,EAAE,gBAAgB,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IAkB/E,OAAO,CAAC,sBAAsB;
|
|
1
|
+
{"version":3,"file":"data.service.d.ts","sourceRoot":"","sources":["../../../src/_services/base/data.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -218,6 +218,9 @@ class DyNTS_DataService {
|
|
|
218
218
|
}
|
|
219
219
|
getDependencyIdsFilter(dependencyIds) {
|
|
220
220
|
if (!this.depSettings.length) {
|
|
221
|
+
fsm_dynamo_1.DyFM_Log.warn(`❌ getDataByDependencyId failed, dependencyKey is missing from service! ` +
|
|
222
|
+
`(${this.dataParams.dataName})` +
|
|
223
|
+
`\n 📍 ${this.dataParams.stackLocation}`);
|
|
221
224
|
throw new fsm_dynamo_1.DyFM_Error({
|
|
222
225
|
...this._getDefaultErrorSettings('getDataByDependencyId', new Error(`getDataByDependencyId failed, dependencyKey is missing from service! ` +
|
|
223
226
|
`(${this.dataParams.dataName})`)),
|