Changelog entries for context summarization

This commit is contained in:
filipi87
2026-02-10 18:59:12 -03:00
parent ba242d4875
commit 2475697955
2 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1 @@
- Added new frames for context summarization: `LLMContextSummaryRequestFrame` and `LLMContextSummaryResultFrame`.

5
changelog/3621.added.md Normal file
View File

@@ -0,0 +1,5 @@
- Added context summarization feature to automatically compress conversation history when conversation length limits (by token or message count) are reached, enabling efficient long-running conversations.
- Configure via `enable_context_summarization=True` in `LLMAssistantAggregatorParams`
- Customize behavior with `LLMContextSummarizationConfig` (max tokens, thresholds, etc.)
- Automatically preserves incomplete function call sequences during summarization
- See new examples: `examples/foundational/54-context-summarization-openai.py` and `examples/foundational/54a-context-summarization-google.py`