Skip to content

Commit ea5e6f3

Browse files
authored
Merge pull request #16 from TrueSelph/0.0.13
updates and fixes
2 parents 4843296 + e9f2283 commit ea5e6f3

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

deepdoc_client_action/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,7 @@
3838
- Updated for compatibility with JIVAS alpha.51 which introduces add_texts_with_embeddings under VectorStoreAction
3939

4040
## 0.0.12
41-
- Added tracked doc count for more optimal paging
41+
- Added tracked doc count for more optimal paging
42+
43+
## 0.0.13
44+
- Removed enumeration of job entries for list_documents to improve paging response

deepdoc_client_action/deepdoc_client_action.jac

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -965,10 +965,9 @@ walker _list_doc_entries {
965965

966966
can on_collection with Collection entry {
967967

968-
job_entries = [-->](`?JobEntry);
969-
970968
if self.total_items == 0 {
971969
# Count total doc entries if we need to
970+
job_entries = [-->](`?JobEntry);
972971
for job in job_entries {
973972
self.total_items += len(job.get_doc_entries());
974973
}

deepdoc_client_action/info.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package:
22
name: jivas/deepdoc_client_action
33
author: V75 Inc.
44
architype: DeepDocClientAction
5-
version: 0.0.12
5+
version: 0.0.13
66
meta:
77
title: DeepDoc Client Action
88
description: Integrates with DeepDoc OCR and document parsing services to ingest documents into a vector store

0 commit comments

Comments
 (0)