@xuda.io/ai_module 1.1.4884 → 1.1.4886

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.
Files changed (2) hide show
  1. package/index.mjs +4 -0
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -66,6 +66,10 @@ const db_module = await import(`${module_path}/db_module/index.mjs`);
66
66
  const drive_module = await import(`${module_path}/drive_module/index.mjs`);
67
67
  const jobs_module = await import(`${module_path}/jobs_module/index.mjs`);
68
68
 
69
+ const account_ms = await import(`${module_path}/account_module/index_ms.mjs`);
70
+
71
+ console.log(account_ms);
72
+
69
73
  var open_ai_status = {};
70
74
  const report_ai_status = function (model, err) {
71
75
  open_ai_status[model] = { stat: err ? 'error' : 'ok', date: new Date(), err };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/ai_module",
3
- "version": "1.1.4884",
3
+ "version": "1.1.4886",
4
4
  "description": "Xuda AI Module",
5
5
  "main": "index.mjs",
6
6
  "type": "module",