@xuda.io/ai_module 1.1.5220 → 1.1.5221

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 +20 -13
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -4715,7 +4715,7 @@ const ai_chat_conversation = async function (req, job_id, headers) {
4715
4715
  const job_info = await jobs_ms.get_job_info({ job_id });
4716
4716
 
4717
4717
  if (counter > 10) {
4718
- resolve(job_info);
4718
+ resolve(null);
4719
4719
  } else {
4720
4720
  if (job_info.code < 0 || job_info.data.stat === 4) {
4721
4721
  reject('aborted');
@@ -4775,23 +4775,30 @@ const ai_chat_conversation = async function (req, job_id, headers) {
4775
4775
  }
4776
4776
 
4777
4777
  if (prompt_suggestions.length) {
4778
- // await render_suggestions();
4779
- // await _utils.delay(10000);
4780
- // const job_info = await jobs_ms.get_job_info({ job_id });
4781
-
4782
- const job_info = await render_suggestions();
4783
-
4784
- if (job_info.code < 0 || job_info.data.stat === 4) {
4785
- // return { code: 5, data: 'aborted' };
4786
- throw 'aborted';
4787
- }
4788
- if (job_info?.data?.payload?.ai_agents) {
4778
+ const suggestions_agent = await render_suggestions();
4779
+ if (suggestions_agent) {
4789
4780
  prompt_suggestion_activated = true;
4790
- ai_agents = job_info.data.payload.ai_agents;
4781
+ ai_agents = suggestions_agent;
4791
4782
  agents = await get_agents();
4792
4783
  } else {
4793
4784
  emitToDashboard('response_start');
4794
4785
  }
4786
+
4787
+ // await render_suggestions();
4788
+ // await _utils.delay(10000);
4789
+ // const job_info = await jobs_ms.get_job_info({ job_id });
4790
+
4791
+ // if (job_info.code < 0 || job_info.data.stat === 4) {
4792
+ // // return { code: 5, data: 'aborted' };
4793
+ // throw 'aborted';
4794
+ // }
4795
+ // if (job_info?.data?.payload?.ai_agents) {
4796
+ // prompt_suggestion_activated = true;
4797
+ // ai_agents = job_info.data.payload.ai_agents;
4798
+ // agents = await get_agents();
4799
+ // } else {
4800
+ // emitToDashboard('response_start');
4801
+ // }
4795
4802
  }
4796
4803
  }
4797
4804
  ///////////
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/ai_module",
3
- "version": "1.1.5220",
3
+ "version": "1.1.5221",
4
4
  "description": "Xuda AI Module",
5
5
  "main": "index.mjs",
6
6
  "type": "module",