@xuda.io/ai_module 1.1.5648 → 1.1.5650
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 +839 -77
- package/index_ms.mjs +12 -0
- package/index_msa.mjs +12 -0
- package/package.json +1 -1
package/index_ms.mjs
CHANGED
|
@@ -77,6 +77,10 @@ export const unarchive_ai_agent = async function (...args) {
|
|
|
77
77
|
return await broker.send_to_queue("unarchive_ai_agent", ...args);
|
|
78
78
|
};
|
|
79
79
|
|
|
80
|
+
export const generate_ai_agent_image = async function (...args) {
|
|
81
|
+
return await broker.send_to_queue("generate_ai_agent_image", ...args);
|
|
82
|
+
};
|
|
83
|
+
|
|
80
84
|
export const archive_ai_agent = async function (...args) {
|
|
81
85
|
return await broker.send_to_queue("archive_ai_agent", ...args);
|
|
82
86
|
};
|
|
@@ -133,6 +137,10 @@ export const submit_structured_prompt = async function (...args) {
|
|
|
133
137
|
return await broker.send_to_queue("submit_structured_prompt", ...args);
|
|
134
138
|
};
|
|
135
139
|
|
|
140
|
+
export const ai_field_assist = async function (...args) {
|
|
141
|
+
return await broker.send_to_queue("ai_field_assist", ...args);
|
|
142
|
+
};
|
|
143
|
+
|
|
136
144
|
export const triage_error_incident = async function (...args) {
|
|
137
145
|
return await broker.send_to_queue("triage_error_incident", ...args);
|
|
138
146
|
};
|
|
@@ -157,6 +165,10 @@ export const submit_chat_conversation = async function (...args) {
|
|
|
157
165
|
return await broker.send_to_queue("submit_chat_conversation", ...args);
|
|
158
166
|
};
|
|
159
167
|
|
|
168
|
+
export const compose_contact_email = async function (...args) {
|
|
169
|
+
return await broker.send_to_queue("compose_contact_email", ...args);
|
|
170
|
+
};
|
|
171
|
+
|
|
160
172
|
export const create_plugin_via_ai = async function (...args) {
|
|
161
173
|
return await broker.send_to_queue("create_plugin_via_ai", ...args);
|
|
162
174
|
};
|
package/index_msa.mjs
CHANGED
|
@@ -77,6 +77,10 @@ export const unarchive_ai_agent = function (...args) {
|
|
|
77
77
|
broker.send_to_queue_async("unarchive_ai_agent", ...args);
|
|
78
78
|
};
|
|
79
79
|
|
|
80
|
+
export const generate_ai_agent_image = function (...args) {
|
|
81
|
+
broker.send_to_queue_async("generate_ai_agent_image", ...args);
|
|
82
|
+
};
|
|
83
|
+
|
|
80
84
|
export const archive_ai_agent = function (...args) {
|
|
81
85
|
broker.send_to_queue_async("archive_ai_agent", ...args);
|
|
82
86
|
};
|
|
@@ -133,6 +137,10 @@ export const submit_structured_prompt = function (...args) {
|
|
|
133
137
|
broker.send_to_queue_async("submit_structured_prompt", ...args);
|
|
134
138
|
};
|
|
135
139
|
|
|
140
|
+
export const ai_field_assist = function (...args) {
|
|
141
|
+
broker.send_to_queue_async("ai_field_assist", ...args);
|
|
142
|
+
};
|
|
143
|
+
|
|
136
144
|
export const triage_error_incident = function (...args) {
|
|
137
145
|
broker.send_to_queue_async("triage_error_incident", ...args);
|
|
138
146
|
};
|
|
@@ -157,6 +165,10 @@ export const submit_chat_conversation = function (...args) {
|
|
|
157
165
|
broker.send_to_queue_async("submit_chat_conversation", ...args);
|
|
158
166
|
};
|
|
159
167
|
|
|
168
|
+
export const compose_contact_email = function (...args) {
|
|
169
|
+
broker.send_to_queue_async("compose_contact_email", ...args);
|
|
170
|
+
};
|
|
171
|
+
|
|
160
172
|
export const create_plugin_via_ai = function (...args) {
|
|
161
173
|
broker.send_to_queue_async("create_plugin_via_ai", ...args);
|
|
162
174
|
};
|