Skip to content

Commit 9b5f9bf

Browse files
Merge branch 'dev'
2 parents 60be57b + b65dd6d commit 9b5f9bf

5 files changed

Lines changed: 6 additions & 4 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ pages
1010
*.egg-info
1111
build
1212
.aider*
13+
obsolete
14+
dist

WDoc/WDoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
class WDoc:
8080
"This docstring is dynamically replaced by the content of WDoc/docs/USAGE.md"
8181

82-
VERSION: str = "1.1.6"
82+
VERSION: str = "1.1.7"
8383
allowed_extra_args = extra_args_keys
8484
md_printer = md_printer
8585

WDoc/utils/embeddings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ def faiss_loader(
430430
assert metadata is not None
431431
temp = FAISS.load_local(fi, cached_embeddings,
432432
allow_dangerous_deserialization=True)
433-
temp.docstore._dict[list(temp.docstore._dict.values())[
433+
temp.docstore._dict[list(temp.docstore._dict.keys())[
434434
0]].metadata = metadata
435435
if not db:
436436
db = temp

bumpver.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpver]
2-
current_version = "1.1.6"
2+
current_version = "1.1.7"
33
version_pattern = "MAJOR.MINOR.PATCH"
44
commit_message = "bump version {old_version} -> {new_version}"
55
tag_message = "{new_version}"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def run(self):
3030

3131
setup(
3232
name="wdoc",
33-
version="1.1.6",
33+
version="1.1.7",
3434
description="A perfect AI powered RAG for document query and summary. Supports ~all LLM and ~all filetypes (url, pdf, epub, youtube (incl playlist), audio, anki, md, docx, pptx, oe any combination!)",
3535
long_description=long_description,
3636
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)