Quickstart

Quickstart

Launch the engine, connect from the SDK, and run your first query.

This repo is organized around three surfaces

  1. Marketing on /
  2. Docs on /docs
  3. Platform UI on /platform

Local-first path

cargo build --release

Point the SDK at the local binary:

from aletheia import AletheiaClient

client = AletheiaClient.from_local(auto_start=True)
client.ingest(entity_id="user-123", text="I prefer pourover coffee.")
hits = client.query("What coffee do I prefer?", entity_id="user-123")

Cloud path

Create an API key in the platform dashboard, then switch constructors:

client = AletheiaClient.from_cloud(
    "http://143.110.246.15:3000",
    api_key="XXX1111AAA",
)

The goal is to keep the developer surface stable while the runtime mode changes.