Access the bloom namespace.
(self)
| 86 | return topk |
| 87 | |
| 88 | def tdigest(self) -> TDigestBloom: |
| 89 | """Access the bloom namespace.""" |
| 90 | |
| 91 | from .bf import TDigestBloom |
| 92 | |
| 93 | tdigest = TDigestBloom(client=self) |
| 94 | return tdigest |
| 95 | |
| 96 | def vset(self) -> VectorSet: |
| 97 | """Access the VectorSet commands namespace.""" |