Once loaded you can use `sqlite-vec` functionality within rqlite. For example, you can perform searches via the [rqlite shell](https://rqlite.io/docs/cli/):
127.0.0.1:4001> select rowid, distance from vec_examples where sample_embedding match '[0.890, 0.544, 0.825, 0.961, 0.358, 0.0196, 0.521, 0.175]' order by distance limit 2
+-------+-------------------+
| rowid | distance |
+-------+-------------------+
| 2 | 2.386873722076416 |
+-------+-------------------+
| 1 | 2.389785051345825 |
+-------+-------------------+
```
You can learn more from the [rqlite website](https://rqlite.io/docs/guides/extensions/).