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
@@ -282,6 +303,7 @@ Use meaningful session IDs that help you organize conversations:
282
303
- Use in-memory SQLite (`SQLiteSession("session_id")`) for temporary conversations
283
304
- Use file-based SQLite (`SQLiteSession("session_id", "path/to/db.sqlite")`) for persistent conversations
284
305
- Use SQLAlchemy-powered sessions (`SQLAlchemySession("session_id", engine=engine, create_tables=True)`) for production systems with existing databases supported by SQLAlchemy
306
+
- Use OpenAI-hosted storage (`OpenAIConversationsSession()`) when you prefer to store history in the OpenAI Conversations API
285
307
- Consider implementing custom session backends for other production systems (Redis, Django, etc.) for more advanced use cases
286
308
287
309
### Session management
@@ -378,4 +400,5 @@ For detailed API documentation, see:
0 commit comments