The Context Layer is the AI agent’s knowledge base. It stores context notes — discrete facts, observations, and document chunks — that the agent retrieves at inference time to reason over your data. Notes are scoped either global (workspace-wide) or project (tied to a single project via a scope_id).
This scope model (global | project + scope_id) is distinct from the user/organization scope used by the rest of the API. A note scoped to project with a given scope_id is invisible to the agent when it operates on a different project, even within the same organization.
All paths are relative to the base URL and require authentication. All responses use the standard envelope.
The platform also ships an onboarding interview wizard that populates context notes interactively. Those endpoints (GET /knowledge/interview/template, POST /knowledge/interview) are UI-internal and not documented here.

Context notes

List notes

Return all context notes for the given scope, optionally filtered by kind.

Create a note

Write a single context note into the knowledge base.

Get a note

Retrieve a single context note by ID.

Update a note

Partially update a context note. Only fields present in the request body are modified. Omitting scope or scope_id entirely leaves those fields unchanged; passing them explicitly (even as null) overwrites them.

Delete a note

Permanently delete a context note.
Run a vector similarity search over context notes. Returns notes ranked by semantic relevance to the query string, each annotated with a similarity score.

Ingestion

Ingest a file as context

Parse and chunk an already-uploaded file into context notes. The file must first be uploaded via POST /data/files/upload, which returns a disk/<name> path to pass here. The ingestion pipeline extracts text, splits it into chunks, embeds each chunk, and persists them as document_chunk notes tied back to a shared document_id. If the embedding service is unavailable the file is still stored as a single un-vectorized note.
Returns 422 Unprocessable Entity when the file is readable but no text can be extracted — the most common cause is a scanned PDF without an OCR layer.

Auto-seed from data sources

Profile connected data sources and automatically write observation notes into the Context Layer. The platform inspects schemas, samples, and statistics for each source and uses the LLM to generate structured observations. This endpoint returns a streaming NDJSON response. Each line is a JSON object with a type field describing the event.
Each NDJSON line follows this shape:

Project document

Render project document

Return a combined document view for a project: an LLM-generated natural-language summary alongside the full executable Vadalog program assembled from all concepts. The summary is cached and is automatically invalidated when concepts or context notes change. Pass refresh=true to force regeneration regardless of the cache state.