@xuda.io/ai_module 1.1.5220 → 1.1.5222
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 +22 -15
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -4714,8 +4714,8 @@ const ai_chat_conversation = async function (req, job_id, headers) {
|
|
|
4714
4714
|
counter++;
|
|
4715
4715
|
const job_info = await jobs_ms.get_job_info({ job_id });
|
|
4716
4716
|
|
|
4717
|
-
if (counter >
|
|
4718
|
-
resolve(
|
|
4717
|
+
if (counter > 20) {
|
|
4718
|
+
resolve(null);
|
|
4719
4719
|
} else {
|
|
4720
4720
|
if (job_info.code < 0 || job_info.data.stat === 4) {
|
|
4721
4721
|
reject('aborted');
|
|
@@ -4731,7 +4731,7 @@ const ai_chat_conversation = async function (req, job_id, headers) {
|
|
|
4731
4731
|
clearInterval(interval);
|
|
4732
4732
|
}
|
|
4733
4733
|
}
|
|
4734
|
-
},
|
|
4734
|
+
}, 500);
|
|
4735
4735
|
});
|
|
4736
4736
|
};
|
|
4737
4737
|
|
|
@@ -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
|
-
|
|
4779
|
-
|
|
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 =
|
|
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
|
///////////
|