MCPcopy
hub / github.com/redis/go-redis / VectorBFloat16

Struct VectorBFloat16

vectorset_commands.go:73–75  ·  view source on GitHub ↗

VectorBFloat16 represents a BFLOAT16-encoded vector blob. note: intended for search/index query commands such as FT.HYBRID.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected