Experiment to rebuild Diffuse using web applets.
1export const SCHEMA = {
2 id: "string" as const,
3 kind: "string" as const,
4 tags: {
5 album: "string" as const,
6 artist: "string" as const,
7 genre: "string" as const,
8 title: "string" as const,
9 year: "number" as const,
10 },
11
12 // TODO:
13 // isFavorite: "boolean" as const,
14 // inPlaylists: [ ... ],
15
16 embeddings: "vector[512]" as const,
17};