Python SDK for Korely Agents — memory for AI agents with bi-temporal typed facts.
Project description
korely-memory
The Python SDK for Korely Agents — memory for AI agents, with bi-temporal typed facts and contradiction checking built in.
A typed, zero-dependency client over the Korely REST API. Every method maps 1:1 onto an endpoint, so anything you can do with curl you can do here, and the JSON shapes in the API reference are the attribute shapes you get back. All the intelligence — embeddings, entity and typed-fact extraction, contradiction checking, bi-temporal validity — runs server-side, so your install stays small and your process stays light.
Install
pip install korely-memory
Python 3.9 or later.
Quickstart
from korely_memory import Korely
korely = Korely(api_key="kor_live_...", region="eu")
# or read the key from the environment (KORELY_API_KEY)
korely = Korely(region="eu")
# Remember — the write path extracts facts and resolves contradictions
korely.add("User prefers TypeScript with strict mode", agent_id="coding-assistant")
korely.add("Actually I switched to Rust", agent_id="coding-assistant")
# Recall — superseded facts drop out automatically
for hit in korely.search("user's preferred language", limit=5):
print(hit.id, hit.score, hit.snippet)
# One-call, prompt-ready context for your LLM
ctx = korely.get_context(query="plan the project", user_id="dana", token_budget=800)
messages = [{"role": "system", "content": f"You are helpful.\n\n{ctx.context}"}]
Methods
Every method wraps exactly one REST endpoint.
| Method | Endpoint |
|---|---|
add(content, *, agent_id=, user_id=, run_id=, metadata=) |
POST /v1/memories |
search(query, *, user_id=, agent_id=, limit=) |
POST /v1/memories/search |
get_all(*, user_id=, agent_id=, limit=, offset=) |
GET /v1/memories |
get(memory_id) |
GET /v1/memories/:id |
update(memory_id, *, content, expected_updated_at=) |
PATCH /v1/memories/:id |
delete(memory_id) |
DELETE /v1/memories/:id |
delete_all(*, user_id) |
DELETE /v1/users/:user_id/memories |
get_facts(*, subject=, entity=, predicate=, predicate_family=, include_invalidated=, as_of=, …) |
GET /v1/facts |
get_context(*, query, user_id=, agent_id=, token_budget=) |
GET /v1/context |
batch(memories) |
POST /v1/batch |
batch_status(job_id) |
GET /v1/batch/:id |
Bi-temporal facts
The differentiator: typed (subject, predicate, object) facts with validity over
time. Ask what was true on any date.
# Current state
facts = korely.get_facts(entity="Northwind Hosting")
print(facts[0].object) # 50 euro per month
print(facts[0].invalid_at) # None — active
# Point-in-time: what did we believe on June 1?
facts = korely.get_facts(entity="Northwind Hosting", as_of="2026-06-01")
print(facts[0].object) # 40 euro per month
Scoping
Three identifiers, three levels of scope — the same everywhere (SDK, REST, MCP):
agent_id— your application or agent (one namespace per product surface)user_id— your end user (free-form string; unlimited on every tier)run_id— one session or run (sub-scope inside a user)
korely.add("Asked to be contacted on Slack", agent_id="support-bot", user_id="customer-4812")
results = korely.search("contact preference", user_id="customer-4812")
Always pass
user_idon reads in multi-tenant products. Filters are additive (AND); a search withoutuser_idspans every end user in the namespace.
Error handling
The SDK raises typed exceptions that map onto the REST error codes; all subclass
KorelyError.
import time
from korely_memory import Korely, AuthenticationError, NotFoundError, QuotaExceededError
korely = Korely(api_key="kor_live_...")
try:
memory = korely.get("mem_8f2c1a")
except AuthenticationError:
raise # 401 — check or rotate the key
except NotFoundError:
memory = None # 404 — forgotten or never existed
except QuotaExceededError as err:
time.sleep(err.retry_after) # 429 — back off and retry
memory = korely.get("mem_8f2c1a")
| Exception | Status |
|---|---|
AuthenticationError |
401 |
NamespaceForbiddenError |
403 |
NotFoundError |
404 |
StaleWriteError |
409 |
QuotaExceededError (.retry_after) |
429 |
APIError |
other |
Links
MIT licensed.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file korely_memory-0.1.0.tar.gz.
File metadata
- Download URL: korely_memory-0.1.0.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c3e8ba4085f900b64cd2bb1d987784a8e65679f9bb232e67522458e7c810e11
|
|
| MD5 |
f44e48ca09d0ea553bf8d788b73a3392
|
|
| BLAKE2b-256 |
2e207d27c34e3e9a8cb997b0b01214e4045ea39f416e949e5bb6b85415d0a298
|
File details
Details for the file korely_memory-0.1.0-py3-none-any.whl.
File metadata
- Download URL: korely_memory-0.1.0-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3219064c9971ad38193eb503f685bf10387ad600ac81780c03722a1dda60d41
|
|
| MD5 |
70c165a2afe44e9f7832497f721a6d4c
|
|
| BLAKE2b-256 |
1a6f798141b6b5be9e338fa71e23e7ac873380c908fae162d492b44e31640e2c
|