MCPcopy Create free account
hub / github.com/alibaba/zvec / VectorQuery

Class VectorQuery

python/zvec/model/param/query.py:165–175  ·  view source on GitHub ↗

Deprecated alias for Query. Use Query instead.

Source from the content-addressed store, hash-verified

163
164
165class VectorQuery(Query):
166 """Deprecated alias for Query. Use Query instead."""
167
168 def __new__(cls, *args, **kwargs): # noqa : ARG004
169 warnings.warn(
170 "VectorQuery is deprecated and will be removed in a future version. "
171 "Use Query instead.",
172 DeprecationWarning,
173 stacklevel=2,
174 )
175 return super().__new__(cls)

Calls

no outgoing calls