AI snippet generator
RelataDB Playground
Explore every capability — pick a preset to see a working snippet, edit the prompt, then generate fresh code in Python, TypeScript, Go, or SQL. Powered by MiniMax-M3.
Snippet generator, not a live runner. Run the output against a local
relata serve / Docker container.Ingest & Query
Temporal & Provenance
Identity
Graph
Search
Agent Memory
Governance
Store rows via the SDK (CSV / NDJSON / JSON auto-detected), then read them back. Ingest writes are governed and bi-temporal from the first row.
Reference examplepython
from relata import RelataClient, IngestClient
client = RelataClient("http://localhost:9090",
bearer_token=TOKEN, purpose="onboarding")
ingest = IngestClient.from_client(client)
# Auto-detects CSV / NDJSON / JSON from the first byte
ingest.ingest("Person",
"name,email\nAlice,alice@example.com\nBob,bob@example.com")
# Read back — identity resolution folds aliases into one subject
for row in client.query("SELECT * FROM Person ORDER BY name LIMIT 10"):
print(row["name"], row["email"])