-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathtest_STLT_memory.py
More file actions
266 lines (212 loc) · 9.95 KB
/
test_STLT_memory.py
File metadata and controls
266 lines (212 loc) · 9.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
from collections import deque
from unittest.mock import AsyncMock, patch
import pytest
from mesa_llm.memory.memory import MemoryEntry
from mesa_llm.memory.st_lt_memory import STLTMemory
class TestSTLTMemory:
"""Test the Memory class core functionality"""
def test_memory_initialization(self, mock_agent):
"""Test Memory class initialization with defaults and custom values"""
memory = STLTMemory(
agent=mock_agent,
short_term_capacity=3,
consolidation_capacity=1,
llm_model="provider/test_model",
)
assert memory.agent == mock_agent
assert memory.capacity == 3
assert memory.consolidation_capacity == 1
assert isinstance(memory.short_term_memory, deque)
assert memory.long_term_memory == ""
assert memory.llm.system_prompt is not None
def test_add_to_memory(self, mock_agent):
"""Test adding memories to short-term memory"""
memory = STLTMemory(agent=mock_agent, llm_model="provider/test_model")
# Test basic addition with observation
memory.add_to_memory("observation", {"step": 1, "content": "Test content"})
# Test with planning
memory.add_to_memory("planning", {"plan": "Test plan", "importance": "high"})
# Test with action
memory.add_to_memory("action", {"action": "Test action"})
# Should be empty step_content initially
assert memory.step_content != {}
def test_process_step(self, mock_agent):
"""Test process_step functionality"""
memory = STLTMemory(agent=mock_agent, llm_model="provider/test_model")
# Add some content
memory.add_to_memory("observation", {"content": "Test observation"})
memory.add_to_memory("plan", {"content": "Test plan"})
# Process the step
with patch("rich.console.Console"):
memory.process_step(pre_step=True)
assert len(memory.short_term_memory) == 1
# Process post-step
memory.process_step(pre_step=False)
def test_memory_consolidation(self, mock_agent, mock_llm, llm_response_factory):
"""Test memory consolidation when capacity is exceeded"""
mock_llm.generate.return_value = llm_response_factory(
"Consolidated memory summary"
)
memory = STLTMemory(
agent=mock_agent,
short_term_capacity=2,
consolidation_capacity=1,
llm_model="provider/test_model",
)
memory.llm = mock_llm
# Add memories to trigger consolidation
with patch("rich.console.Console"):
for i in range(5):
memory.add_to_memory("observation", {"content": f"content_{i}"})
memory.process_step(pre_step=True)
memory.process_step(pre_step=False)
# Should have consolidated some memories
assert (
len(memory.short_term_memory)
<= memory.capacity + memory.consolidation_capacity
)
def test_format_memories(self, mock_agent):
"""Test formatting of short-term and long-term memory"""
memory = STLTMemory(agent=mock_agent, llm_model="provider/test_model")
# Test empty short-term memory
assert memory.format_short_term() == "No recent memory."
# Test with entries
memory.short_term_memory.append(
MemoryEntry(content={"observation": "Test obs"}, step=1, agent=mock_agent)
)
memory.short_term_memory.append(
MemoryEntry(content={"planning": "Test plan"}, step=2, agent=mock_agent)
)
result = memory.format_short_term()
assert "Step 1:" in result
assert "Test obs" in result
assert "Step 2:" in result
assert "Test plan" in result
# Test long-term memory formatting
memory.long_term_memory = "Long-term summary"
assert memory.format_long_term() == "Long-term summary"
def test_update_long_term_memory(self, mock_agent, mock_llm, llm_response_factory):
"""Check that after consolidation, long_term_memory holds the actual
text from the LLM response, not some object."""
mock_llm.generate.return_value = llm_response_factory(
"Updated long-term memory"
)
memory = STLTMemory(agent=mock_agent, llm_model="provider/test_model")
memory.llm = mock_llm
memory.long_term_memory = "Previous memory"
evicted = [
MemoryEntry(
content={"observation": "old content"}, step=0, agent=mock_agent
)
]
memory._update_long_term_memory(evicted)
call_args = mock_llm.generate.call_args[0][0]
assert "old content" in call_args
assert "Previous memory" in call_args
# Must be a plain string, not a ModelResponse object
assert isinstance(memory.long_term_memory, str)
assert memory.long_term_memory == "Updated long-term memory"
def test_long_term_memory_stores_string_not_response_object(
self, mock_agent, mock_llm, llm_response_factory
):
"""Make sure long_term_memory is always a plain string.
Before this fix, it was storing the whole LLM response object instead
of just the text — which broke any prompt that used the memory.
"""
mock_llm.generate.return_value = llm_response_factory(
"This is the summary text"
)
memory = STLTMemory(agent=mock_agent, llm_model="provider/test_model")
memory.llm = mock_llm
evicted = [MemoryEntry(content={"data": "evicted"}, step=0, agent=mock_agent)]
memory._update_long_term_memory(evicted)
assert isinstance(memory.long_term_memory, str), (
"long_term_memory must be a string, not a ModelResponse object"
)
assert memory.long_term_memory == "This is the summary text"
def test_consolidation_receives_evicted_entries(
self, mock_agent, mock_llm, llm_response_factory
):
"""Regression test for #107: evicted entries must be passed to the
LLM for summarization, not the remaining short-term memories."""
mock_llm.generate.return_value = llm_response_factory("Consolidated summary")
memory = STLTMemory(
agent=mock_agent,
short_term_capacity=2,
consolidation_capacity=2,
llm_model="provider/test_model",
)
memory.llm = mock_llm
# Fill up: 2 (capacity) + 2 (consolidation) + 1 to trigger
with patch("rich.console.Console"):
for i in range(5):
memory.add_to_memory("observation", {"content": f"step_{i}"})
memory.process_step(pre_step=True)
mock_agent.model.steps = i + 1
memory.process_step(pre_step=False)
# The LLM should have been called with the evicted entries
assert mock_llm.generate.called
prompt = mock_llm.generate.call_args[0][0]
# The prompt must contain the evicted memories, not just the
# remaining ones
assert "consolidate" in prompt.lower() or "removed" in prompt.lower()
@pytest.mark.asyncio
async def test_aupdate_long_term_memory(
self, mock_agent, mock_llm, llm_response_factory
):
"""Cover the async consolidation path (_aupdate_long_term_memory)."""
mock_llm.agenerate = AsyncMock(
return_value=llm_response_factory("Async consolidated summary")
)
memory = STLTMemory(agent=mock_agent, llm_model="provider/test_model")
memory.llm = mock_llm
memory.long_term_memory = "Old summary"
evicted = [
MemoryEntry(
content={"observation": "evicted data"}, step=0, agent=mock_agent
)
]
await memory._aupdate_long_term_memory(evicted)
mock_llm.agenerate.assert_called_once()
prompt = mock_llm.agenerate.call_args[0][0]
assert "evicted data" in prompt
assert "Old summary" in prompt
assert isinstance(memory.long_term_memory, str)
assert memory.long_term_memory == "Async consolidated summary"
def test_observation_tracking(self, mock_agent):
"""Test that observations are properly tracked and only changes stored"""
memory = STLTMemory(agent=mock_agent, llm_model="provider/test_model")
# First observation
obs1 = {"position": (0, 0), "health": 100}
memory.add_to_memory("observation", obs1)
# Same observation (should not add much to step_content)
memory.add_to_memory("observation", obs1)
# Changed observation
obs2 = {"position": (1, 1), "health": 90}
memory.add_to_memory("observation", obs2)
# Verify last observation is tracked
assert memory.last_observation == obs2
def test_get_prompt_ready_returns_str(self, mock_agent):
"""Test that get_prompt_ready returns a str, not a list (issue #116)."""
memory = STLTMemory(agent=mock_agent, llm_model="provider/test_model")
memory.short_term_memory.append(
MemoryEntry(content={"observation": "Test obs"}, step=1, agent=mock_agent)
)
memory.long_term_memory = "Long-term summary"
result = memory.get_prompt_ready()
assert isinstance(result, str), (
f"get_prompt_ready() must return str, got {type(result).__name__}"
)
assert "Short term memory:" in result
assert "Long term memory:" in result
assert "Test obs" in result
assert "Long-term summary" in result
def test_get_prompt_ready_returns_str_when_empty(self, mock_agent):
"""Test that get_prompt_ready returns str even with empty memory."""
memory = STLTMemory(agent=mock_agent, llm_model="provider/test_model")
result = memory.get_prompt_ready()
assert isinstance(result, str), (
f"get_prompt_ready() must return str, got {type(result).__name__}"
)
assert "Short term memory:" in result
assert "Long term memory:" in result