Skip to main content
Agents draw on two kinds of persistent context. Knowledge is reference material you ingest and search semantically. Memory is information an agent records and recalls across scopes. Both are provided by the Data Platform REST API.

Knowledge vs Memory

These serve different purposes and have different access patterns:
Knowledge search uses embedding similarity, not keyword or exact match. A query for “refund policy” will match content about “return procedures” or “money-back guarantees” if the semantic meaning is close. Tune score_threshold to control the relevance cutoff.

Key concepts

Knowledge

Built by ingesting documents or connecting data sources. Content is chunked and embedded, then available for semantic search. Search: query (1–10,000 chars), top_k (1–100, default 10), optional score_threshold.

Memory scopes and TTL

Accessing via REST API

Knowledge and memory are accessed via curl against the Data Platform REST API. There is no SDK client for data operations.

Knowledge Stores

Create and search knowledge.

Memory

Record and recall agent memory.

Connectors

Sync external data into knowledge.

Context Bundles

Assemble grounded context for runs.

Next steps

Continue to Organizations.