@xuda.io/ai_module 1.1.5610 → 1.1.5612
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 +1120 -33
- package/index_ms.mjs +24 -0
- package/index_msa.mjs +24 -0
- package/package.json +4 -4
package/index_ms.mjs
CHANGED
|
@@ -81,6 +81,10 @@ export const delete_mini_app = async function (...args) {
|
|
|
81
81
|
return await broker.send_to_queue("delete_mini_app", ...args);
|
|
82
82
|
};
|
|
83
83
|
|
|
84
|
+
export const start_cli_agent_conversation = async function (...args) {
|
|
85
|
+
return await broker.send_to_queue("start_cli_agent_conversation", ...args);
|
|
86
|
+
};
|
|
87
|
+
|
|
84
88
|
export const update_ai_agent = async function (...args) {
|
|
85
89
|
return await broker.send_to_queue("update_ai_agent", ...args);
|
|
86
90
|
};
|
|
@@ -236,3 +240,23 @@ export const get_chat_suggestions = async function (...args) {
|
|
|
236
240
|
export const validate_credits_limit = async function (...args) {
|
|
237
241
|
return await broker.send_to_queue("validate_credits_limit", ...args);
|
|
238
242
|
};
|
|
243
|
+
|
|
244
|
+
export const get_widget_embed_snippet = async function (...args) {
|
|
245
|
+
return await broker.send_to_queue("get_widget_embed_snippet", ...args);
|
|
246
|
+
};
|
|
247
|
+
|
|
248
|
+
export const widget_signup = async function (...args) {
|
|
249
|
+
return await broker.send_to_queue("widget_signup", ...args);
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
export const widget_signup_google = async function (...args) {
|
|
253
|
+
return await broker.send_to_queue("widget_signup_google", ...args);
|
|
254
|
+
};
|
|
255
|
+
|
|
256
|
+
export const widget_send_message = async function (...args) {
|
|
257
|
+
return await broker.send_to_queue("widget_send_message", ...args);
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
export const widget_get_messages = async function (...args) {
|
|
261
|
+
return await broker.send_to_queue("widget_get_messages", ...args);
|
|
262
|
+
};
|
package/index_msa.mjs
CHANGED
|
@@ -81,6 +81,10 @@ export const delete_mini_app = function (...args) {
|
|
|
81
81
|
broker.send_to_queue_async("delete_mini_app", ...args);
|
|
82
82
|
};
|
|
83
83
|
|
|
84
|
+
export const start_cli_agent_conversation = function (...args) {
|
|
85
|
+
broker.send_to_queue_async("start_cli_agent_conversation", ...args);
|
|
86
|
+
};
|
|
87
|
+
|
|
84
88
|
export const update_ai_agent = function (...args) {
|
|
85
89
|
broker.send_to_queue_async("update_ai_agent", ...args);
|
|
86
90
|
};
|
|
@@ -236,3 +240,23 @@ export const get_chat_suggestions = function (...args) {
|
|
|
236
240
|
export const validate_credits_limit = function (...args) {
|
|
237
241
|
broker.send_to_queue_async("validate_credits_limit", ...args);
|
|
238
242
|
};
|
|
243
|
+
|
|
244
|
+
export const get_widget_embed_snippet = function (...args) {
|
|
245
|
+
broker.send_to_queue_async("get_widget_embed_snippet", ...args);
|
|
246
|
+
};
|
|
247
|
+
|
|
248
|
+
export const widget_signup = function (...args) {
|
|
249
|
+
broker.send_to_queue_async("widget_signup", ...args);
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
export const widget_signup_google = function (...args) {
|
|
253
|
+
broker.send_to_queue_async("widget_signup_google", ...args);
|
|
254
|
+
};
|
|
255
|
+
|
|
256
|
+
export const widget_send_message = function (...args) {
|
|
257
|
+
broker.send_to_queue_async("widget_send_message", ...args);
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
export const widget_get_messages = function (...args) {
|
|
261
|
+
broker.send_to_queue_async("widget_get_messages", ...args);
|
|
262
|
+
};
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xuda.io/ai_module",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5612",
|
|
4
4
|
"description": "Xuda AI Module",
|
|
5
5
|
"main": "index.mjs",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@imgly/background-removal-node": "
|
|
8
|
+
"@imgly/background-removal-node": "1.4.3",
|
|
9
9
|
"@openai/agents": "^0.3.4",
|
|
10
10
|
"amqplib": "^0.10.9",
|
|
11
11
|
"dotenv": "^16.0.3",
|
|
12
|
-
"firebase-admin": "^
|
|
12
|
+
"firebase-admin": "^13.10.0",
|
|
13
13
|
"fs-extra": "^11.2.0",
|
|
14
14
|
"https-proxy-agent": "^7.0.6",
|
|
15
15
|
"json5": "^2.2.3",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"uglify-js": "^3.19.3",
|
|
23
23
|
"utf8": "^3.0.0",
|
|
24
24
|
"vm2": "^3.10.0",
|
|
25
|
-
"youtube-dl-exec": "^
|
|
25
|
+
"youtube-dl-exec": "^3.1.7",
|
|
26
26
|
"zod": "^3.25.67",
|
|
27
27
|
"zod-to-json-schema": "^3.24.6"
|
|
28
28
|
},
|