@xuda.io/ai_module 1.1.5615 → 1.1.5617
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/full_stack_vps_api_instructions.md +47 -0
- package/index.mjs +1355 -595
- package/index_ms.mjs +42 -22
- package/index_msa.mjs +38 -22
- package/package.json +1 -1
package/index_ms.mjs
CHANGED
|
@@ -17,28 +17,8 @@
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
export const
|
|
21
|
-
return await broker.send_to_queue("
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
export const pexels_search = async function (...args) {
|
|
25
|
-
return await broker.send_to_queue("pexels_search", ...args);
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
export const estimate_static_website_cost = async function (...args) {
|
|
29
|
-
return await broker.send_to_queue("estimate_static_website_cost", ...args);
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export const ingest_attachments = async function (...args) {
|
|
33
|
-
return await broker.send_to_queue("ingest_attachments", ...args);
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
export const generate_site_files = async function (...args) {
|
|
37
|
-
return await broker.send_to_queue("generate_site_files", ...args);
|
|
38
|
-
};
|
|
39
|
-
|
|
40
|
-
export const modify_site_files = async function (...args) {
|
|
41
|
-
return await broker.send_to_queue("modify_site_files", ...args);
|
|
20
|
+
export const generate_site_draft = async function (...args) {
|
|
21
|
+
return await broker.send_to_queue("generate_site_draft", ...args);
|
|
42
22
|
};
|
|
43
23
|
|
|
44
24
|
export const execute_codex_request = async function (...args) {
|
|
@@ -121,6 +101,14 @@ export const create_ai_agent = async function (...args) {
|
|
|
121
101
|
return await broker.send_to_queue("create_ai_agent", ...args);
|
|
122
102
|
};
|
|
123
103
|
|
|
104
|
+
export const create_plugin_via_ai = async function (...args) {
|
|
105
|
+
return await broker.send_to_queue("create_plugin_via_ai", ...args);
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
export const modify_plugin_via_ai = async function (...args) {
|
|
109
|
+
return await broker.send_to_queue("modify_plugin_via_ai", ...args);
|
|
110
|
+
};
|
|
111
|
+
|
|
124
112
|
export const update_ai_agent_properties = async function (...args) {
|
|
125
113
|
return await broker.send_to_queue("update_ai_agent_properties", ...args);
|
|
126
114
|
};
|
|
@@ -141,6 +129,10 @@ export const submit_chat_gpt_prompt = async function (...args) {
|
|
|
141
129
|
return await broker.send_to_queue("submit_chat_gpt_prompt", ...args);
|
|
142
130
|
};
|
|
143
131
|
|
|
132
|
+
export const triage_error_incident = async function (...args) {
|
|
133
|
+
return await broker.send_to_queue("triage_error_incident", ...args);
|
|
134
|
+
};
|
|
135
|
+
|
|
144
136
|
export const create_openai_conversation = async function (...args) {
|
|
145
137
|
return await broker.send_to_queue("create_openai_conversation", ...args);
|
|
146
138
|
};
|
|
@@ -281,6 +273,34 @@ export const widget_signup_google = async function (...args) {
|
|
|
281
273
|
return await broker.send_to_queue("widget_signup_google", ...args);
|
|
282
274
|
};
|
|
283
275
|
|
|
276
|
+
export const site_signup_google = async function (...args) {
|
|
277
|
+
return await broker.send_to_queue("site_signup_google", ...args);
|
|
278
|
+
};
|
|
279
|
+
|
|
280
|
+
export const site_recreate_avatar = async function (...args) {
|
|
281
|
+
return await broker.send_to_queue("site_recreate_avatar", ...args);
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
export const public_profile_ask_friendship = async function (...args) {
|
|
285
|
+
return await broker.send_to_queue("public_profile_ask_friendship", ...args);
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
export const widget_get_avatar = async function (...args) {
|
|
289
|
+
return await broker.send_to_queue("widget_get_avatar", ...args);
|
|
290
|
+
};
|
|
291
|
+
|
|
292
|
+
export const site_get_avatar = async function (...args) {
|
|
293
|
+
return await broker.send_to_queue("site_get_avatar", ...args);
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
export const site_get_ascii_art = async function (...args) {
|
|
297
|
+
return await broker.send_to_queue("site_get_ascii_art", ...args);
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
export const site_get_styled_portrait = async function (...args) {
|
|
301
|
+
return await broker.send_to_queue("site_get_styled_portrait", ...args);
|
|
302
|
+
};
|
|
303
|
+
|
|
284
304
|
export const widget_send_message = async function (...args) {
|
|
285
305
|
return await broker.send_to_queue("widget_send_message", ...args);
|
|
286
306
|
};
|
package/index_msa.mjs
CHANGED
|
@@ -17,28 +17,8 @@
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
export const
|
|
21
|
-
broker.send_to_queue_async("
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
export const pexels_search = function (...args) {
|
|
25
|
-
broker.send_to_queue_async("pexels_search", ...args);
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
export const estimate_static_website_cost = function (...args) {
|
|
29
|
-
broker.send_to_queue_async("estimate_static_website_cost", ...args);
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export const ingest_attachments = function (...args) {
|
|
33
|
-
broker.send_to_queue_async("ingest_attachments", ...args);
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
export const generate_site_files = function (...args) {
|
|
37
|
-
broker.send_to_queue_async("generate_site_files", ...args);
|
|
38
|
-
};
|
|
39
|
-
|
|
40
|
-
export const modify_site_files = function (...args) {
|
|
41
|
-
broker.send_to_queue_async("modify_site_files", ...args);
|
|
20
|
+
export const generate_site_draft = function (...args) {
|
|
21
|
+
broker.send_to_queue_async("generate_site_draft", ...args);
|
|
42
22
|
};
|
|
43
23
|
|
|
44
24
|
export const execute_codex_request = function (...args) {
|
|
@@ -121,6 +101,14 @@ export const create_ai_agent = function (...args) {
|
|
|
121
101
|
broker.send_to_queue_async("create_ai_agent", ...args);
|
|
122
102
|
};
|
|
123
103
|
|
|
104
|
+
export const create_plugin_via_ai = function (...args) {
|
|
105
|
+
broker.send_to_queue_async("create_plugin_via_ai", ...args);
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
export const modify_plugin_via_ai = function (...args) {
|
|
109
|
+
broker.send_to_queue_async("modify_plugin_via_ai", ...args);
|
|
110
|
+
};
|
|
111
|
+
|
|
124
112
|
export const update_ai_agent_properties = function (...args) {
|
|
125
113
|
broker.send_to_queue_async("update_ai_agent_properties", ...args);
|
|
126
114
|
};
|
|
@@ -281,6 +269,34 @@ export const widget_signup_google = function (...args) {
|
|
|
281
269
|
broker.send_to_queue_async("widget_signup_google", ...args);
|
|
282
270
|
};
|
|
283
271
|
|
|
272
|
+
export const site_signup_google = function (...args) {
|
|
273
|
+
broker.send_to_queue_async("site_signup_google", ...args);
|
|
274
|
+
};
|
|
275
|
+
|
|
276
|
+
export const site_recreate_avatar = function (...args) {
|
|
277
|
+
broker.send_to_queue_async("site_recreate_avatar", ...args);
|
|
278
|
+
};
|
|
279
|
+
|
|
280
|
+
export const public_profile_ask_friendship = function (...args) {
|
|
281
|
+
broker.send_to_queue_async("public_profile_ask_friendship", ...args);
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
export const widget_get_avatar = function (...args) {
|
|
285
|
+
broker.send_to_queue_async("widget_get_avatar", ...args);
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
export const site_get_avatar = function (...args) {
|
|
289
|
+
broker.send_to_queue_async("site_get_avatar", ...args);
|
|
290
|
+
};
|
|
291
|
+
|
|
292
|
+
export const site_get_ascii_art = function (...args) {
|
|
293
|
+
broker.send_to_queue_async("site_get_ascii_art", ...args);
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
export const site_get_styled_portrait = function (...args) {
|
|
297
|
+
broker.send_to_queue_async("site_get_styled_portrait", ...args);
|
|
298
|
+
};
|
|
299
|
+
|
|
284
300
|
export const widget_send_message = function (...args) {
|
|
285
301
|
broker.send_to_queue_async("widget_send_message", ...args);
|
|
286
302
|
};
|