VectorBFloat16 represents a BFLOAT16-encoded vector blob. note: intended for search/index query commands such as FT.HYBRID.
| 71 | // VectorBFloat16 represents a BFLOAT16-encoded vector blob. |
| 72 | // note: intended for search/index query commands such as FT.HYBRID. |
| 73 | type VectorBFloat16 struct { |
| 74 | Val []byte |
| 75 | } |
| 76 | |
| 77 | func (v *VectorBFloat16) Value() []any { |
| 78 | return []any{vectorFormatBF16, v.Val} |
nothing calls this directly
no outgoing calls
no test coverage detected