I followed the guide for rusqlite and discovered that the demo snippet did not compile. I visited the linked demo repo and discovered the issues I was having:
You need the bundled feature enabled for sqlite-vec to apply
You need a sample vector to pass as an embedding. The example was referencing an x variable that did not exist
I've also introduced zerocopy earlier to clarify where as_bytes is coming from.
I followed the guide for rusqlite and discovered that the demo snippet did not compile. I visited the linked demo repo and discovered the issues I was having:
bundled
feature enabled forsqlite-vec
to applyx
variable that did not existI've also introduced
zerocopy
earlier to clarify whereas_bytes
is coming from.