Skip to content

Commit

Permalink
Merge branch 'main' into fix-python-lint-issues
Browse files Browse the repository at this point in the history
  • Loading branch information
codetheweb committed Apr 24, 2024
2 parents d8cdbe4 + df65e5a commit 8727ee7
Show file tree
Hide file tree
Showing 32 changed files with 1,540 additions and 275 deletions.
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion chromadb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

__settings = Settings()

__version__ = "0.4.24"
__version__ = "0.5.0"

# Workaround to deal with Colab's old sqlite3 version
try:
Expand Down
2 changes: 1 addition & 1 deletion chromadb/api/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def validate_where(where: Where) -> Where:
or not all(isinstance(x, type(operand[0])) for x in operand)
):
raise ValueError(
f"Expected where operand value to be a non-empty list, and all values to obe of the same type "
f"Expected where operand value to be a non-empty list, and all values to be of the same type "
f"got {operand}"
)
return where
Expand Down
101 changes: 72 additions & 29 deletions chromadb/proto/chroma_pb2.py

Large diffs are not rendered by default.

255 changes: 217 additions & 38 deletions chromadb/proto/chroma_pb2.pyi

Large diffs are not rendered by default.

74 changes: 74 additions & 0 deletions chromadb/proto/chroma_pb2_grpc.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

71 changes: 36 additions & 35 deletions chromadb/proto/coordinator_pb2.py

Large diffs are not rendered by default.

74 changes: 39 additions & 35 deletions chromadb/proto/coordinator_pb2.pyi

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8727ee7

Please sign in to comment.