Skip to content

Commit

Permalink
Merge branch 'pinecone-filters' of https://github.com/deepset-ai/hays…
Browse files Browse the repository at this point in the history
…tack-core-integrations into pinecone-filters
  • Loading branch information
anakin87 committed Dec 22, 2023
2 parents 0c8d627 + 4b3fcfe commit 68acf6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/pinecone/src/pinecone_haystack/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def _not_equal(field: str, value: Any) -> Dict[str, Any]:
supported_types = (str, int, float, bool)
if not isinstance(value, supported_types):
msg = (
f"Unsupported type for 'inequal' comparison: {type(value)}. "
f"Unsupported type for 'not equal' comparison: {type(value)}. "
f"Types supported by Pinecone are: {supported_types}"
)
raise FilterError(msg)
Expand Down

0 comments on commit 68acf6d

Please sign in to comment.