I have a search filter like this:
{"$and": [{"name": {"$eq": "foo"}}, {"type": {"$in": ["bar"]}}]}
This does not pass the typing check in 7.0 version of Pinecone python package.
As per the definition of SimpleFilter in query_filter.py, this structure is incorrect. But it seems right per the documentation.
Is this an issue with my filter definition or SimpleFilter?