LangChain - Conversational RAG
What is wrong with this session management approach?
```python
session_store = {}
user_id = 'user101'
session_store[user_id] = []
session_store[user_id] = ['Hi']
session_store[user_id].append('How are you?')
print(session_store[user_id])
```
