Strategy Types
- APPEND (Default): New node messages are added to the existing context, preserving the full conversation history. The context grows as the conversation progresses.
- RESET: The context is cleared and replaced with only the new node’s messages. Useful when previous conversation history is no longer relevant or to reduce context window size.
- RESET_WITH_SUMMARY: The context is cleared but includes an AI-generated summary of the previous conversation along with the new node’s messages. Helps reduce context size while preserving key information.
When to Use Each Strategy
- Use APPEND when full conversation history is important for context
- Use RESET when starting a new topic or when previous context might confuse the current task
- Use RESET_WITH_SUMMARY for long conversations where you need to preserve key points but reduce context size