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

Class VectorQuery

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

Deprecated alias for Query. Use Query instead.

Source from the content-addressed store, hash-verified

131
132
133class VectorQuery(Query):
134 """Deprecated alias for Query. Use Query instead."""
135
136 def __new__(cls, *args, **kwargs): # noqa : ARG004
137 warnings.warn(
138 "VectorQuery is deprecated and will be removed in a future version. "
139 "Use Query instead.",
140 DeprecationWarning,
141 stacklevel=2,
142 )
143 return super().__new__(cls)

Calls

no outgoing calls