@xuda.io/ai_module 1.1.5617 → 1.1.5619

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
@@ -101,14 +101,6 @@ export const create_ai_agent = async function (...args) {
101
101
  return await broker.send_to_queue("create_ai_agent", ...args);
102
102
  };
103
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
-
112
104
  export const update_ai_agent_properties = async function (...args) {
113
105
  return await broker.send_to_queue("update_ai_agent_properties", ...args);
114
106
  };
@@ -145,6 +137,14 @@ export const submit_chat_conversation = async function (...args) {
145
137
  return await broker.send_to_queue("submit_chat_conversation", ...args);
146
138
  };
147
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
+
148
148
  export const create_avatar = async function (...args) {
149
149
  return await broker.send_to_queue("create_avatar", ...args);
150
150
  };
package/index_msa.mjs CHANGED
@@ -101,14 +101,6 @@ export const create_ai_agent = function (...args) {
101
101
  broker.send_to_queue_async("create_ai_agent", ...args);
102
102
  };
103
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
-
112
104
  export const update_ai_agent_properties = function (...args) {
113
105
  broker.send_to_queue_async("update_ai_agent_properties", ...args);
114
106
  };
@@ -129,6 +121,10 @@ export const submit_chat_gpt_prompt = function (...args) {
129
121
  broker.send_to_queue_async("submit_chat_gpt_prompt", ...args);
130
122
  };
131
123
 
124
+ export const triage_error_incident = function (...args) {
125
+ broker.send_to_queue_async("triage_error_incident", ...args);
126
+ };
127
+
132
128
  export const create_openai_conversation = function (...args) {
133
129
  broker.send_to_queue_async("create_openai_conversation", ...args);
134
130
  };
@@ -141,6 +137,14 @@ export const submit_chat_conversation = function (...args) {
141
137
  broker.send_to_queue_async("submit_chat_conversation", ...args);
142
138
  };
143
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
+
144
148
  export const create_avatar = function (...args) {
145
149
  broker.send_to_queue_async("create_avatar", ...args);
146
150
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/ai_module",
3
- "version": "1.1.5617",
3
+ "version": "1.1.5619",
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', _);