fleet-memory/skills/hindsight-docs/references/changelog/integrations/litellm.md
Nicolò Boschi 7990381f6a
fix(ci): resolve all CI failures (#847)
* fix(ci): resolve all CI failures — unversioned integrations, test retries

- Move integration docs to separate unversioned docs plugin (docs-integrations/)
  so new integrations don't need to be duplicated across versioned_docs
- Remove integration pages from versioned_docs (v0.3, v0.4) — sidebar
  entries now use links instead of doc refs
- Add missing title/description SEO frontmatter to autogen.md
- Add retry logic (2 attempts) to test-doc-examples.sh for transient
  LLM timeouts
- Add pytest-rerunfailures to test-api with --reruns 2 for flaky
  Gemini-dependent integration tests

* ci: retrigger

* fix: graph entity inheritance, SyncTaskBackend error propagation, fact_type test regressions

- Fix observation entity inheritance in get_graph_data: the unit_entities
  query only fetched entities for visible observation IDs, not their source
  memory IDs, so the inheritance loop always found an empty entity_map
- Remove error swallowing in SyncTaskBackend._execute_task so test failures
  surface instead of being silently logged
- Wrap remaining consolidation submission call sites with try/except since
  consolidation is non-critical for those operations
- Fix test_sync_backend test to expect errors to propagate
- Remove fact_type=["world"] filter from test_document_upsert_behavior and
  test_mentioned_at_from_context_string (same PR #848 regression)
- Remove flaky marker from consolidation test (now deterministic)
2026-04-02 17:17:42 +02:00

1.4 KiB

hide_table_of_contents
true

import PageHero from '@site/src/components/PageHero';

← LiteLLM integration

0.5.0

Features

  • Add streaming support when using the LiteLLM wrapper integration. (665877bb)
  • Add async retain and reflect support, along with a cleaned-up LiteLLM integration API. (1d4879a2)
  • Initial release of the Hindsight LiteLLM integration implementation. (dfccbf29)

Improvements

  • Support sending tags and mission metadata through the LiteLLM integration to improve memory organization and retrieval. (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)
  • Fix API key handling by passing the configured api_key through to the Hindsight client in the LiteLLM integration. (c0ca9b02)