@xuda.io/ai_module 1.1.5655 → 1.1.5657
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 +2636 -250
- package/index_ms.mjs +84 -0
- package/index_msa.mjs +84 -0
- package/package.json +2 -2
package/index_ms.mjs
CHANGED
|
@@ -33,6 +33,62 @@ export const execute_codex_request = async function (...args) {
|
|
|
33
33
|
return await broker.send_to_queue("execute_codex_request", ...args);
|
|
34
34
|
};
|
|
35
35
|
|
|
36
|
+
export const start_code_run = async function (...args) {
|
|
37
|
+
return await broker.send_to_queue("start_code_run", ...args);
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
export const sweep_code_runs = async function (...args) {
|
|
41
|
+
return await broker.send_to_queue("sweep_code_runs", ...args);
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export const code_run_file_diff = async function (...args) {
|
|
45
|
+
return await broker.send_to_queue("code_run_file_diff", ...args);
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
export const code_run_revert_file = async function (...args) {
|
|
49
|
+
return await broker.send_to_queue("code_run_revert_file", ...args);
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export const get_code_runs = async function (...args) {
|
|
53
|
+
return await broker.send_to_queue("get_code_runs", ...args);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export const get_code_run = async function (...args) {
|
|
57
|
+
return await broker.send_to_queue("get_code_run", ...args);
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export const abort_code_run = async function (...args) {
|
|
61
|
+
return await broker.send_to_queue("abort_code_run", ...args);
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export const git_repo_connect = async function (...args) {
|
|
65
|
+
return await broker.send_to_queue("git_repo_connect", ...args);
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export const git_repo_list = async function (...args) {
|
|
69
|
+
return await broker.send_to_queue("git_repo_list", ...args);
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
export const git_repo_disconnect = async function (...args) {
|
|
73
|
+
return await broker.send_to_queue("git_repo_disconnect", ...args);
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
export const git_repo_status = async function (...args) {
|
|
77
|
+
return await broker.send_to_queue("git_repo_status", ...args);
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
export const git_commit = async function (...args) {
|
|
81
|
+
return await broker.send_to_queue("git_commit", ...args);
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
export const git_push = async function (...args) {
|
|
85
|
+
return await broker.send_to_queue("git_push", ...args);
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export const git_open_pr = async function (...args) {
|
|
89
|
+
return await broker.send_to_queue("git_open_pr", ...args);
|
|
90
|
+
};
|
|
91
|
+
|
|
36
92
|
export const get_chat_conversation = async function (...args) {
|
|
37
93
|
return await broker.send_to_queue("get_chat_conversation", ...args);
|
|
38
94
|
};
|
|
@@ -189,6 +245,10 @@ export const compose_contact_email = async function (...args) {
|
|
|
189
245
|
return await broker.send_to_queue("compose_contact_email", ...args);
|
|
190
246
|
};
|
|
191
247
|
|
|
248
|
+
export const log_sent_email = async function (...args) {
|
|
249
|
+
return await broker.send_to_queue("log_sent_email", ...args);
|
|
250
|
+
};
|
|
251
|
+
|
|
192
252
|
export const create_plugin_via_ai = async function (...args) {
|
|
193
253
|
return await broker.send_to_queue("create_plugin_via_ai", ...args);
|
|
194
254
|
};
|
|
@@ -253,6 +313,30 @@ export const unpin_ai_agent = async function (...args) {
|
|
|
253
313
|
return await broker.send_to_queue("unpin_ai_agent", ...args);
|
|
254
314
|
};
|
|
255
315
|
|
|
316
|
+
export const favorite_ai_chat = async function (...args) {
|
|
317
|
+
return await broker.send_to_queue("favorite_ai_chat", ...args);
|
|
318
|
+
};
|
|
319
|
+
|
|
320
|
+
export const unfavorite_ai_chat = async function (...args) {
|
|
321
|
+
return await broker.send_to_queue("unfavorite_ai_chat", ...args);
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
export const favorite_mini_app = async function (...args) {
|
|
325
|
+
return await broker.send_to_queue("favorite_mini_app", ...args);
|
|
326
|
+
};
|
|
327
|
+
|
|
328
|
+
export const unfavorite_mini_app = async function (...args) {
|
|
329
|
+
return await broker.send_to_queue("unfavorite_mini_app", ...args);
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
export const favorite_ai_agent = async function (...args) {
|
|
333
|
+
return await broker.send_to_queue("favorite_ai_agent", ...args);
|
|
334
|
+
};
|
|
335
|
+
|
|
336
|
+
export const unfavorite_ai_agent = async function (...args) {
|
|
337
|
+
return await broker.send_to_queue("unfavorite_ai_agent", ...args);
|
|
338
|
+
};
|
|
339
|
+
|
|
256
340
|
export const get_transcript = async function (...args) {
|
|
257
341
|
return await broker.send_to_queue("get_transcript", ...args);
|
|
258
342
|
};
|
package/index_msa.mjs
CHANGED
|
@@ -33,6 +33,62 @@ export const execute_codex_request = function (...args) {
|
|
|
33
33
|
broker.send_to_queue_async("execute_codex_request", ...args);
|
|
34
34
|
};
|
|
35
35
|
|
|
36
|
+
export const start_code_run = function (...args) {
|
|
37
|
+
broker.send_to_queue_async("start_code_run", ...args);
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
export const sweep_code_runs = function (...args) {
|
|
41
|
+
broker.send_to_queue_async("sweep_code_runs", ...args);
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export const code_run_file_diff = function (...args) {
|
|
45
|
+
broker.send_to_queue_async("code_run_file_diff", ...args);
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
export const code_run_revert_file = function (...args) {
|
|
49
|
+
broker.send_to_queue_async("code_run_revert_file", ...args);
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export const get_code_runs = function (...args) {
|
|
53
|
+
broker.send_to_queue_async("get_code_runs", ...args);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export const get_code_run = function (...args) {
|
|
57
|
+
broker.send_to_queue_async("get_code_run", ...args);
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export const abort_code_run = function (...args) {
|
|
61
|
+
broker.send_to_queue_async("abort_code_run", ...args);
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export const git_repo_connect = function (...args) {
|
|
65
|
+
broker.send_to_queue_async("git_repo_connect", ...args);
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export const git_repo_list = function (...args) {
|
|
69
|
+
broker.send_to_queue_async("git_repo_list", ...args);
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
export const git_repo_disconnect = function (...args) {
|
|
73
|
+
broker.send_to_queue_async("git_repo_disconnect", ...args);
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
export const git_repo_status = function (...args) {
|
|
77
|
+
broker.send_to_queue_async("git_repo_status", ...args);
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
export const git_commit = function (...args) {
|
|
81
|
+
broker.send_to_queue_async("git_commit", ...args);
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
export const git_push = function (...args) {
|
|
85
|
+
broker.send_to_queue_async("git_push", ...args);
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export const git_open_pr = function (...args) {
|
|
89
|
+
broker.send_to_queue_async("git_open_pr", ...args);
|
|
90
|
+
};
|
|
91
|
+
|
|
36
92
|
export const get_chat_conversation = function (...args) {
|
|
37
93
|
broker.send_to_queue_async("get_chat_conversation", ...args);
|
|
38
94
|
};
|
|
@@ -189,6 +245,10 @@ export const compose_contact_email = function (...args) {
|
|
|
189
245
|
broker.send_to_queue_async("compose_contact_email", ...args);
|
|
190
246
|
};
|
|
191
247
|
|
|
248
|
+
export const log_sent_email = function (...args) {
|
|
249
|
+
broker.send_to_queue_async("log_sent_email", ...args);
|
|
250
|
+
};
|
|
251
|
+
|
|
192
252
|
export const create_plugin_via_ai = function (...args) {
|
|
193
253
|
broker.send_to_queue_async("create_plugin_via_ai", ...args);
|
|
194
254
|
};
|
|
@@ -253,6 +313,30 @@ export const unpin_ai_agent = function (...args) {
|
|
|
253
313
|
broker.send_to_queue_async("unpin_ai_agent", ...args);
|
|
254
314
|
};
|
|
255
315
|
|
|
316
|
+
export const favorite_ai_chat = function (...args) {
|
|
317
|
+
broker.send_to_queue_async("favorite_ai_chat", ...args);
|
|
318
|
+
};
|
|
319
|
+
|
|
320
|
+
export const unfavorite_ai_chat = function (...args) {
|
|
321
|
+
broker.send_to_queue_async("unfavorite_ai_chat", ...args);
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
export const favorite_mini_app = function (...args) {
|
|
325
|
+
broker.send_to_queue_async("favorite_mini_app", ...args);
|
|
326
|
+
};
|
|
327
|
+
|
|
328
|
+
export const unfavorite_mini_app = function (...args) {
|
|
329
|
+
broker.send_to_queue_async("unfavorite_mini_app", ...args);
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
export const favorite_ai_agent = function (...args) {
|
|
333
|
+
broker.send_to_queue_async("favorite_ai_agent", ...args);
|
|
334
|
+
};
|
|
335
|
+
|
|
336
|
+
export const unfavorite_ai_agent = function (...args) {
|
|
337
|
+
broker.send_to_queue_async("unfavorite_ai_agent", ...args);
|
|
338
|
+
};
|
|
339
|
+
|
|
256
340
|
export const get_transcript = function (...args) {
|
|
257
341
|
broker.send_to_queue_async("get_transcript", ...args);
|
|
258
342
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xuda.io/ai_module",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5657",
|
|
4
4
|
"description": "Xuda AI Module",
|
|
5
5
|
"main": "index.mjs",
|
|
6
6
|
"type": "module",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"openai": "^6.7.0",
|
|
19
19
|
"puppeteer-extra": "^3.3.6",
|
|
20
20
|
"puppeteer-extra-plugin-stealth": "^2.11.2",
|
|
21
|
-
"sharp": "^0.
|
|
21
|
+
"sharp": "^0.35.0",
|
|
22
22
|
"uglify-js": "^3.19.3",
|
|
23
23
|
"utf8": "^3.0.0",
|
|
24
24
|
"vm2": "^3.10.0",
|