cozodb

Erlang/BEAM NIF bindings for CozoDB using Rustler.

CozoDB is a FOSS embeddable, transactional, relational-graph-vector database, wiht a Datalog query engine and time travelling capability, perfect as the long-term memory for LLMs and AI.

Installation

Requirements

Erlang

Add the following to your rebar.config file.

{deps, [
    {cozodb,
      {git, "https://github.com/leapsight/cozodb.git", {branch, "master"}}
    }
]}.

Elixir

Add the following to your mix.exs file.

  defp deps do
    [
        {:cozodb,
            git: "https://github.com/leapsight/cozodb.git",
            branch: "master"
        }
    ]