You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**ImportError for required packages**: Install the required packages:
339
287
```bash
340
-
pip install openai mem0ai langgraph
288
+
pip install openai
341
289
```
342
290
343
-
**Memory not persisting**: Ensure you're using a persistent provider like Mem0, not the in-memory provider for production.
291
+
**Memory not persisting**: Note that the in-memory provider loses data when the application restarts. Consider implementing a custom persistent provider for production use.
344
292
345
293
**Agent timeouts**: Complex workflows may take time. Consider implementing timeout handling in your endpoints.
**ImportError for mem0ai/langgraph**: Install the required packages:
255
+
**ImportError for openai**: Install the required package:
306
256
```bash
307
-
pip install mem0ai langgraph
257
+
pip install openai
308
258
```
309
259
310
-
**Memory not persisting**: Ensure you're using a persistent provider like Mem0, not the in-memory provider for production.
260
+
**Memory not persisting**: Note that the in-memory provider loses data when the application restarts. Consider implementing a custom persistent provider for production use.
311
261
312
-
**Agent timeouts**: Complex LangGraph workflows may take time. Consider implementing timeout handling in your endpoints.
262
+
**Agent timeouts**: Complex operations may take time. Consider implementing timeout handling in your endpoints.
313
263
314
264
**Memory growing too large**: Implement periodic cleanup or use providers with built-in retention policies.
0 commit comments