@xuda.io/ai_module 1.1.5007 → 1.1.5008
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 -0
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1288,6 +1288,8 @@ export const get_ai_chats = async function (req, job_id, headers) {
|
|
|
1288
1288
|
|
|
1289
1289
|
const ret = await db_module.get_app_couch_view(account_profile_info.app_id, 'ai_chat_list', {
|
|
1290
1290
|
key: [stat, reference_id],
|
|
1291
|
+
limit: limit || 9999,
|
|
1292
|
+
skip: skip || 0,
|
|
1291
1293
|
include_docs: true,
|
|
1292
1294
|
});
|
|
1293
1295
|
|