@xuda.io/ai_module 1.1.5219 → 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.
- package/index.mjs +26 -14
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -4715,14 +4715,19 @@ 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(
|
|
4718
|
+
resolve(null);
|
|
4719
4719
|
} else {
|
|
4720
4720
|
if (job_info.code < 0 || job_info.data.stat === 4) {
|
|
4721
4721
|
reject('aborted');
|
|
4722
4722
|
clearInterval(interval);
|
|
4723
4723
|
}
|
|
4724
4724
|
if (job_info?.data?.payload?.skip_suggestions) {
|
|
4725
|
-
resolve(
|
|
4725
|
+
resolve(null);
|
|
4726
|
+
clearInterval(interval);
|
|
4727
|
+
}
|
|
4728
|
+
|
|
4729
|
+
if (job_info?.data?.payload?.ai_agents) {
|
|
4730
|
+
resolve(job_info.data.payload.ai_agents);
|
|
4726
4731
|
clearInterval(interval);
|
|
4727
4732
|
}
|
|
4728
4733
|
}
|
|
@@ -4770,23 +4775,30 @@ const ai_chat_conversation = async function (req, job_id, headers) {
|
|
|
4770
4775
|
}
|
|
4771
4776
|
|
|
4772
4777
|
if (prompt_suggestions.length) {
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
// const job_info = await jobs_ms.get_job_info({ job_id });
|
|
4776
|
-
|
|
4777
|
-
const job_info = await render_suggestions();
|
|
4778
|
-
|
|
4779
|
-
if (job_info.code < 0 || job_info.data.stat === 4) {
|
|
4780
|
-
// return { code: 5, data: 'aborted' };
|
|
4781
|
-
throw 'aborted';
|
|
4782
|
-
}
|
|
4783
|
-
if (job_info?.data?.payload?.ai_agents) {
|
|
4778
|
+
const suggestions_agent = await render_suggestions();
|
|
4779
|
+
if (suggestions_agent) {
|
|
4784
4780
|
prompt_suggestion_activated = true;
|
|
4785
|
-
ai_agents =
|
|
4781
|
+
ai_agents = suggestions_agent;
|
|
4786
4782
|
agents = await get_agents();
|
|
4787
4783
|
} else {
|
|
4788
4784
|
emitToDashboard('response_start');
|
|
4789
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
|
+
// }
|
|
4790
4802
|
}
|
|
4791
4803
|
}
|
|
4792
4804
|
///////////
|