Releases: GitLoomHQ/gitloom-python
Releases · GitLoomHQ/gitloom-python
Release list
v0.4.1 — the wrapped client reaches the whole memory surface
openai.gitloomforwards the whole memory surface. It already forwarded
recallandremember;answer,vocabandskillswere left behind when
they were added, so reaching them meant going throughopenai.gitloom.memory
with nothing saying so.vocabandskillsare built once per client rather than on every access.
v0.4.0 — recall returns memories
- Recall returns memories.
res["hits"]becomesres["memories"], and
each entry is one whole memory with itscontentrather than a scattering
of its sections.matchednames the arms that found it,sectionsthe
headings that matched,viawhat pulled in a neighbour. - Scores mean something.
scoreis calibrated in[0, 1]and comparable
across queries, replacing a fused rank that only ordered one response.
scores["coverage"]says how much of the query a memory accounted for. recalltakes filters —tiers,paths,tags,tags_all,since,
until,min_score,context,detail,include_expired— applied
inside every retrieval arm server-side rather than after the fact.answer(query)returns one text answer: a fast model over a retrieval,
or withagentic=Truea stronger model that searches the memory itself with
tools and returns itstrace. RaisesGitloomError("no_answer")rather
than returning an empty string. Both meter as chats.memory.vocab—learn,list,lookup,forget. A learned alias
makes a query for any surface form find memories written with another;
matched definitions come back asdefined.memory.skills—storeandfind, stored as memories under the
skills/tier.candidates,filtered_outandtimingsreport what retrieval did.