this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: document LiteLLM tools=None bug workaround

Added documentation about the LiteLLM bug that causes TypeError when
Letta sends tools=null during summarization, and the fix using pinned
version v1.80.9.dev6.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

alice 8109082d 8369ac83

+20
+20
CLAUDE.md
··· 221 221 // Then update if exists, create if not 222 222 ``` 223 223 224 + ### LiteLLM tools=None Bug (Pinned Version) 225 + 226 + LiteLLM's `main-latest` image has a bug where `filter_web_search_deployments` throws a `TypeError` when Letta sends `tools=null` during summarization requests. 227 + 228 + **Symptom:** Agent crashes during memory compaction/summarization with: 229 + ``` 230 + TypeError: argument of type 'NoneType' is not iterable 231 + ``` 232 + 233 + **Fix:** Pin to version `v1.80.9.dev6` which includes the fix: 234 + ```yaml 235 + # docker-compose.yml 236 + litellm: 237 + # Using specific version that includes fix for tools=None bug 238 + # https://github.com/BerriAI/litellm/commit/7c2e2111c0cc3372ca0ce911d0b6d45c22794d7f 239 + image: ghcr.io/berriai/litellm:litellm_embedding_header_forwarding-v1.80.9.dev6 240 + ``` 241 + 242 + **When to update:** Once LiteLLM releases a stable version with this fix merged, update to that version. 243 + 224 244 --- 225 245 226 246 ## Tiny Wins Tools