tinyvector 0.0.1

A tiny nearest-neighbor embedding database built with SQLite.
1
2
3
4
5
6
7
8
9
10
11
12
use aide::axum::ApiRouter;

mod collection;
mod docs;
mod system;

pub fn handler() -> ApiRouter {
	ApiRouter::new()
		.merge(docs::handler())
		.merge(system::handler())
		.merge(collection::handler())
}