@xuda.io/ai_module 1.1.5590 → 1.1.5592
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.mjs +9 -0
- package/index_ms.mjs +4 -4
- package/index_msa.mjs +4 -4
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -4354,7 +4354,16 @@ export const submit_chat_conversation = async function (req, job_id, headers) {
|
|
|
4354
4354
|
break;
|
|
4355
4355
|
}
|
|
4356
4356
|
|
|
4357
|
+
case 'studio': {
|
|
4358
|
+
break;
|
|
4359
|
+
}
|
|
4360
|
+
|
|
4361
|
+
case 'dashboard': {
|
|
4362
|
+
break;
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4357
4365
|
default:
|
|
4366
|
+
ret = await ai_chat_conversation(req, job_id, headers);
|
|
4358
4367
|
break;
|
|
4359
4368
|
}
|
|
4360
4369
|
|
package/index_ms.mjs
CHANGED
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
+
export const execute_codex_request = async function (...args) {
|
|
21
|
+
return await broker.send_to_queue("execute_codex_request", ...args);
|
|
22
|
+
};
|
|
23
|
+
|
|
20
24
|
export const get_chat_conversation = async function (...args) {
|
|
21
25
|
return await broker.send_to_queue("get_chat_conversation", ...args);
|
|
22
26
|
};
|
|
@@ -221,10 +225,6 @@ export const get_person_info = async function (...args) {
|
|
|
221
225
|
return await broker.send_to_queue("get_person_info", ...args);
|
|
222
226
|
};
|
|
223
227
|
|
|
224
|
-
export const execute_codex_request = async function (...args) {
|
|
225
|
-
return await broker.send_to_queue("execute_codex_request", ...args);
|
|
226
|
-
};
|
|
227
|
-
|
|
228
228
|
export const open_ai_alive_check = async function (...args) {
|
|
229
229
|
return await broker.send_to_queue("open_ai_alive_check", ...args);
|
|
230
230
|
};
|
package/index_msa.mjs
CHANGED
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
+
export const execute_codex_request = function (...args) {
|
|
21
|
+
broker.send_to_queue_async("execute_codex_request", ...args);
|
|
22
|
+
};
|
|
23
|
+
|
|
20
24
|
export const get_chat_conversation = function (...args) {
|
|
21
25
|
broker.send_to_queue_async("get_chat_conversation", ...args);
|
|
22
26
|
};
|
|
@@ -221,10 +225,6 @@ export const get_person_info = function (...args) {
|
|
|
221
225
|
broker.send_to_queue_async("get_person_info", ...args);
|
|
222
226
|
};
|
|
223
227
|
|
|
224
|
-
export const execute_codex_request = function (...args) {
|
|
225
|
-
broker.send_to_queue_async("execute_codex_request", ...args);
|
|
226
|
-
};
|
|
227
|
-
|
|
228
228
|
export const open_ai_alive_check = function (...args) {
|
|
229
229
|
broker.send_to_queue_async("open_ai_alive_check", ...args);
|
|
230
230
|
};
|