From b7abf8565a42ba6d94b7cd2399e330a8cda15bf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Boschi?= Date: Sat, 21 Mar 2026 09:18:40 +0100 Subject: [PATCH] release(litellm): v0.5.0 --- .../src/pages/changelog/integrations/litellm.md | 17 +++++++++++++++++ hindsight-integrations/litellm/pyproject.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/hindsight-docs/src/pages/changelog/integrations/litellm.md b/hindsight-docs/src/pages/changelog/integrations/litellm.md index aea667e4..e1eeead1 100644 --- a/hindsight-docs/src/pages/changelog/integrations/litellm.md +++ b/hindsight-docs/src/pages/changelog/integrations/litellm.md @@ -7,3 +7,20 @@ import PageHero from '@site/src/components/PageHero'; [← LiteLLM integration](/sdks/integrations/litellm) + +## [0.5.0](https://github.com/vectorize-io/hindsight/tree/integrations/litellm/v0.5.0) + +**Features** + +- Add streaming support when using the LiteLLM wrapper integration. ([`665877bb`](https://github.com/vectorize-io/hindsight/commit/665877bb)) +- Add async retain and reflect support, along with a cleaned-up LiteLLM integration API. ([`1d4879a2`](https://github.com/vectorize-io/hindsight/commit/1d4879a2)) +- Initial release of the Hindsight LiteLLM integration implementation. ([`dfccbf29`](https://github.com/vectorize-io/hindsight/commit/dfccbf29)) + +**Improvements** + +- Support sending tags and mission metadata through the LiteLLM integration to improve memory organization and retrieval. ([`f3c5a9c1`](https://github.com/vectorize-io/hindsight/commit/f3c5a9c1)) + +**Bug Fixes** + +- When no explicit Hindsight query is provided, the integration now uses the most recent user message as the query to avoid missing/empty memory lookups. ([`5e8952c5`](https://github.com/vectorize-io/hindsight/commit/5e8952c5)) +- Fix API key handling by passing the configured api_key through to the Hindsight client in the LiteLLM integration. ([`c0ca9b02`](https://github.com/vectorize-io/hindsight/commit/c0ca9b02)) diff --git a/hindsight-integrations/litellm/pyproject.toml b/hindsight-integrations/litellm/pyproject.toml index 11c1bdac..84001986 100644 --- a/hindsight-integrations/litellm/pyproject.toml +++ b/hindsight-integrations/litellm/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hindsight-litellm" -version = "0.4.19" +version = "0.5.0" description = "Universal LLM memory integration via LiteLLM - works with 100+ providers" readme = "README.md" requires-python = ">=3.10"