datacules-agentdb 0.7.0

Single-file embedded database for AI agents. SQL + Vector Search + Full-Text Search + Hybrid Queries + Memory Graphs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module AgentDB
  # Base error class for all AgentDB exceptions.
  class Error < StandardError; end

  # Raised when the native library cannot be loaded.
  class LibraryNotFoundError < Error; end

  # Raised when an FFI call returns a NULL pointer or error code.
  class FFIError < Error; end

  # Raised when a database cannot be opened.
  class DatabaseError < Error; end
end