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
## Summary
- document the OpenAI Conversations session option on the sessions guide
- link to the generated reference page for the OpenAI Conversations
session implementation
- check in the generated reference stubs created during the docs build
## Testing
- make build-docs
------
https://chatgpt.com/codex/tasks/task_i_68b80232666c83209c185fb761150b60
@@ -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