It's a bit unclear how the variables Buffer and Summary relate. Through testing this is my assumption:
Buffer is the total tokens available for the summarization plugin to use
Summary is the amount of tokens reserved for long term memory
So if Buffer is 768 tokens, and Summary is 512 tokens, that would leave 768 - 512 = 256 tokens left over for short term memory. Is this correct?
Also, I'm unsure how short and long term memory is represented in the memory contents. I was expecting short and long term memory to go into different places, but they seem to be combined in a single paragraph.
It's a bit unclear how the variables
Buffer
andSummary
relate. Through testing this is my assumption:Buffer
is the total tokens available for the summarization plugin to useSummary
is the amount of tokens reserved for long term memorySo if Buffer is 768 tokens, and Summary is 512 tokens, that would leave 768 - 512 = 256 tokens left over for short term memory. Is this correct?
Also, I'm unsure how short and long term memory is represented in the memory contents. I was expecting short and long term memory to go into different places, but they seem to be combined in a single paragraph.