@xuda.io/ai_module 1.1.5343 → 1.1.5344
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 +4 -0
- package/index_msa.mjs +4 -0
- package/package.json +1 -1
package/index_ms.mjs
CHANGED
|
@@ -204,3 +204,7 @@ export const open_ai_alive_check = async function (...args) {
|
|
|
204
204
|
export const get_chat_suggestions = async function (...args) {
|
|
205
205
|
return await broker.send_to_queue("get_chat_suggestions", ...args);
|
|
206
206
|
};
|
|
207
|
+
|
|
208
|
+
export const validate_credits_limit = async function (...args) {
|
|
209
|
+
return await broker.send_to_queue("validate_credits_limit", ...args);
|
|
210
|
+
};
|
package/index_msa.mjs
CHANGED
|
@@ -204,3 +204,7 @@ export const open_ai_alive_check = function (...args) {
|
|
|
204
204
|
export const get_chat_suggestions = function (...args) {
|
|
205
205
|
broker.send_to_queue_async("get_chat_suggestions", ...args);
|
|
206
206
|
};
|
|
207
|
+
|
|
208
|
+
export const validate_credits_limit = function (...args) {
|
|
209
|
+
broker.send_to_queue_async("validate_credits_limit", ...args);
|
|
210
|
+
};
|