@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/.env +1 -0
- package/.sitework/boaz-wiki/assets/boaz-avrahami.png +0 -0
- package/.sitework/boaz-wiki/assets/favicon-180.png +0 -0
- package/.sitework/boaz-wiki/assets/favicon-32.png +0 -0
- package/.sitework/boaz-wiki/assets/favicon.ico +0 -0
- package/.sitework/boaz-wiki/assets/site.js +47 -0
- package/.sitework/boaz-wiki/assets/styles.css +563 -0
- package/.sitework/boaz-wiki/index.html +847 -0
- package/.tmp_boaz_site/assets/boaz-avrahami.png +0 -0
- package/.tmp_boaz_site/assets/site.js +47 -0
- package/.tmp_boaz_site/assets/styles.css +278 -0
- package/.tmp_boaz_site/index.html +845 -0
- package/build_boaz_wiki.py +601 -0
- package/globals.mjs +6 -0
- package/gpt.mjs +155 -0
- package/index copy 2.js +2129 -0
- package/index copy.js +1455 -0
- package/index old.mjs +423 -0
- package/index.js +3751 -0
- package/index_ms.mjs +8 -8
- package/index_msa.mjs +12 -8
- package/package.json +1 -1
- package/test.mjs +2 -0
- package/un-used.mjs +1437 -0
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
package/test.mjs
ADDED