harmonia-memory 0.1.0

Long-term memory store with vector compression for the Harmonia agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
load("@rules_rust//rust:defs.bzl", "rust_library", "rust_shared_library")

package(default_visibility = ["//visibility:public"])

rust_library(
    name = "memory",
    srcs = glob(["src/**/*.rs"]),
    edition = "2021",
)

rust_shared_library(
    name = "memory-so",
    srcs = glob(["src/**/*.rs"]),
    edition = "2021",
)