(
self: SyncClientProtocol,
key: KeyT,
input: list[float] | bytes | str,
with_scores: bool | None = False,
with_attribs: bool | None = False,
count: int | None = None,
ef: Number | None = None,
filter: str | None = None,
filter_ef: str | None = None,
truth: bool | None = False,
no_thread: bool | None = False,
epsilon: Number | None = None,
)
| 178 | |
| 179 | @overload |
| 180 | def vsim( |
| 181 | self: SyncClientProtocol, |
| 182 | key: KeyT, |
| 183 | input: list[float] | bytes | str, |
| 184 | with_scores: bool | None = False, |
| 185 | with_attribs: bool | None = False, |
| 186 | count: int | None = None, |
| 187 | ef: Number | None = None, |
| 188 | filter: str | None = None, |
| 189 | filter_ef: str | None = None, |
| 190 | truth: bool | None = False, |
| 191 | no_thread: bool | None = False, |
| 192 | epsilon: Number | None = None, |
| 193 | ) -> VSimResult: ... |
| 194 | |
| 195 | @overload |
| 196 | def vsim( |