@xuda.io/ai_module 1.1.5616 → 1.1.5618

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_ms.mjs CHANGED
@@ -17,28 +17,8 @@
17
17
 
18
18
 
19
19
 
20
- export const pick_image_source = async function (...args) {
21
- return await broker.send_to_queue("pick_image_source", ...args);
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) {
@@ -141,6 +121,10 @@ export const submit_chat_gpt_prompt = async function (...args) {
141
121
  return await broker.send_to_queue("submit_chat_gpt_prompt", ...args);
142
122
  };
143
123
 
124
+ export const triage_error_incident = async function (...args) {
125
+ return await broker.send_to_queue("triage_error_incident", ...args);
126
+ };
127
+
144
128
  export const create_openai_conversation = async function (...args) {
145
129
  return await broker.send_to_queue("create_openai_conversation", ...args);
146
130
  };
@@ -153,6 +137,14 @@ export const submit_chat_conversation = async function (...args) {
153
137
  return await broker.send_to_queue("submit_chat_conversation", ...args);
154
138
  };
155
139
 
140
+ export const create_plugin_via_ai = async function (...args) {
141
+ return await broker.send_to_queue("create_plugin_via_ai", ...args);
142
+ };
143
+
144
+ export const modify_plugin_via_ai = async function (...args) {
145
+ return await broker.send_to_queue("modify_plugin_via_ai", ...args);
146
+ };
147
+
156
148
  export const create_avatar = async function (...args) {
157
149
  return await broker.send_to_queue("create_avatar", ...args);
158
150
  };
@@ -285,6 +277,10 @@ export const site_signup_google = async function (...args) {
285
277
  return await broker.send_to_queue("site_signup_google", ...args);
286
278
  };
287
279
 
280
+ export const site_recreate_avatar = async function (...args) {
281
+ return await broker.send_to_queue("site_recreate_avatar", ...args);
282
+ };
283
+
288
284
  export const public_profile_ask_friendship = async function (...args) {
289
285
  return await broker.send_to_queue("public_profile_ask_friendship", ...args);
290
286
  };
@@ -297,6 +293,14 @@ export const site_get_avatar = async function (...args) {
297
293
  return await broker.send_to_queue("site_get_avatar", ...args);
298
294
  };
299
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
+
300
304
  export const widget_send_message = async function (...args) {
301
305
  return await broker.send_to_queue("widget_send_message", ...args);
302
306
  };
package/index_msa.mjs CHANGED
@@ -17,28 +17,8 @@
17
17
 
18
18
 
19
19
 
20
- export const pick_image_source = function (...args) {
21
- broker.send_to_queue_async("pick_image_source", ...args);
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) {
@@ -141,6 +121,10 @@ export const submit_chat_gpt_prompt = function (...args) {
141
121
  broker.send_to_queue_async("submit_chat_gpt_prompt", ...args);
142
122
  };
143
123
 
124
+ export const triage_error_incident = function (...args) {
125
+ broker.send_to_queue_async("triage_error_incident", ...args);
126
+ };
127
+
144
128
  export const create_openai_conversation = function (...args) {
145
129
  broker.send_to_queue_async("create_openai_conversation", ...args);
146
130
  };
@@ -153,6 +137,14 @@ export const submit_chat_conversation = function (...args) {
153
137
  broker.send_to_queue_async("submit_chat_conversation", ...args);
154
138
  };
155
139
 
140
+ export const create_plugin_via_ai = function (...args) {
141
+ broker.send_to_queue_async("create_plugin_via_ai", ...args);
142
+ };
143
+
144
+ export const modify_plugin_via_ai = function (...args) {
145
+ broker.send_to_queue_async("modify_plugin_via_ai", ...args);
146
+ };
147
+
156
148
  export const create_avatar = function (...args) {
157
149
  broker.send_to_queue_async("create_avatar", ...args);
158
150
  };
@@ -285,6 +277,10 @@ export const site_signup_google = function (...args) {
285
277
  broker.send_to_queue_async("site_signup_google", ...args);
286
278
  };
287
279
 
280
+ export const site_recreate_avatar = function (...args) {
281
+ broker.send_to_queue_async("site_recreate_avatar", ...args);
282
+ };
283
+
288
284
  export const public_profile_ask_friendship = function (...args) {
289
285
  broker.send_to_queue_async("public_profile_ask_friendship", ...args);
290
286
  };
@@ -297,6 +293,14 @@ export const site_get_avatar = function (...args) {
297
293
  broker.send_to_queue_async("site_get_avatar", ...args);
298
294
  };
299
295
 
296
+ export const site_get_ascii_art = function (...args) {
297
+ broker.send_to_queue_async("site_get_ascii_art", ...args);
298
+ };
299
+
300
+ export const site_get_styled_portrait = function (...args) {
301
+ broker.send_to_queue_async("site_get_styled_portrait", ...args);
302
+ };
303
+
300
304
  export const widget_send_message = function (...args) {
301
305
  broker.send_to_queue_async("widget_send_message", ...args);
302
306
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/ai_module",
3
- "version": "1.1.5616",
3
+ "version": "1.1.5618",
4
4
  "description": "Xuda AI Module",
5
5
  "main": "index.mjs",
6
6
  "type": "module",
package/test.mjs ADDED
@@ -0,0 +1,2 @@
1
+ console.log('klona', klona);
2
+ console.log('lodash', _);