@xuda.io/ai_module 1.1.5256 → 1.1.5257
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 +1 -0
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -4891,6 +4891,7 @@ const ai_chat_conversation = async function (req, job_id, headers) {
|
|
|
4891
4891
|
let out_conversation_item_doc = await db_module.get_app_couch_doc_native(account_profile_info.app_id, out_conversation_item_obj._id);
|
|
4892
4892
|
// out_conversation_item_doc.stat = 3;
|
|
4893
4893
|
out_conversation_item_doc.conversation_item_reference_id = conversation_items?.data?.[0]?.id;
|
|
4894
|
+
out_conversation_item_doc.prompt_suggestions = prompt_suggestions;
|
|
4894
4895
|
await db_module.save_app_couch_doc_native(account_profile_info.app_id, out_conversation_item_doc);
|
|
4895
4896
|
|
|
4896
4897
|
account_msa.record_ai_usage(uid, inputTokens, outputTokens, 'conversation chat', prompt, model, { conversation_id, ai_agent_id: in_conversation_item_obj.ai_agent_id, item_id: in_conversation_item_obj._id }, account_profile_info);
|