Doc: Fix examples (#2355)

This commit is contained in:
Dev Khant
2025-03-10 20:08:58 +05:30
committed by GitHub
parent 192c33f190
commit e9a0be66d8
3 changed files with 6 additions and 6 deletions

View File

@@ -94,8 +94,8 @@ You can fetch all the memories at any point in time using the following code:
```python
memories = support_agent.get_memories(user_id=customer_id)
for m in memories:
print(m['text'])
for m in memories['results']:
print(m['memory'])
```
### Key Points