@xuda.io/ai_module 1.1.5590 → 1.1.5591
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 +4 -0
- package/index_ms.mjs +4 -4
- package/index_msa.mjs +4 -4
- package/package.json +1 -1
package/index.mjs
CHANGED
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
|
};
|