@xuda.io/ai_module 1.1.4945 → 1.1.4947
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 +2 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1536,7 +1536,7 @@ const get_studio_doc = async function (req) {
|
|
|
1536
1536
|
};
|
|
1537
1537
|
|
|
1538
1538
|
export const get_ai_agent_info = async function (uid, job_id, headers, doc, from_marketplace) {
|
|
1539
|
-
const account_profile_info = await
|
|
1539
|
+
const account_profile_info = await get_active_account_profile_info(uid);
|
|
1540
1540
|
|
|
1541
1541
|
const get_contact_border = function (doc) {
|
|
1542
1542
|
const disable_color = `#1a3557`;
|
|
@@ -10709,6 +10709,7 @@ export const get_person_info = async function (uid, name, email, account_profile
|
|
|
10709
10709
|
export const open_ai_alive_check = async function () {};
|
|
10710
10710
|
|
|
10711
10711
|
const get_active_account_profile_info = async function (uid) {
|
|
10712
|
+
debugger;
|
|
10712
10713
|
const key = `active_account_profile_info_${uid}`;
|
|
10713
10714
|
|
|
10714
10715
|
let account_profile_info;
|