@xuda.io/ai_module 1.1.5465 → 1.1.5467
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 +5 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -2947,7 +2947,7 @@ export const update_ai_agent_properties = async function (doc, app_id, uid, fiel
|
|
|
2947
2947
|
|
|
2948
2948
|
export const update_thumbnail = async function (type, doc, app_id, uid, job_id, headers, xuda_db, tags, account_profile_info) {
|
|
2949
2949
|
let prompt = '';
|
|
2950
|
-
|
|
2950
|
+
debugger;
|
|
2951
2951
|
// setTimeout(async () => {
|
|
2952
2952
|
try {
|
|
2953
2953
|
const get_db_doc = async function () {
|
|
@@ -3664,7 +3664,10 @@ const process_conversation = async function (uid, conversation_id, account_profi
|
|
|
3664
3664
|
//enable_thumbnail_avatar_generation
|
|
3665
3665
|
const { data: account_doc } = await db_module.get_couch_doc('xuda_accounts', account_profile_info.uid);
|
|
3666
3666
|
let thumbnail_type = 'conversation_category';
|
|
3667
|
-
if (
|
|
3667
|
+
if (
|
|
3668
|
+
(conversation_type === 'chat' && (account_doc?.preferences?.enable_thumbnail_avatar_generation || (typeof account_doc?.preferences?.enable_thumbnail_avatar_generation === 'undefined' && (account_doc.membership_plan !== 'free' || account_doc.ai_workspace_plan !== 'free_ai_workspace')))) ||
|
|
3669
|
+
!category_info.category
|
|
3670
|
+
) {
|
|
3668
3671
|
thumbnail_type = 'conversation_title';
|
|
3669
3672
|
}
|
|
3670
3673
|
|