[DOCS] Fix incorrect model name in conversation management example #193
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Fixed incorrect model name in conversation management documentation example. Updated
claude-haiku-4-20250514
(which doesn't exist) to the correctclaude-3-5-haiku-20241022
model name in the SummarizingConversationManager example.Type of Change
Motivation and Context
The documentation contained an example using a non-existent model name
claude-haiku-4-20250514
. This would cause errors for users trying to follow the example code. The correct model name isclaude-3-5-haiku-20241022
, which is the actual Claude 3.5 Haiku model available from Anthropic. View full list hereAreas Affected
docs/user-guide/concepts/agents/conversation-management.md
- Line 139 in the SummarizingConversationManager advanced configuration exampleScreenshots
N/A - Text-only change
Checklist
mkdocs serve
Additional Notes
This is a simple but important fix to ensure the documentation examples work correctly for users. The change maintains the same functionality while using the correct model identifier.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.