Description
The documentation currently shows an incorrect import path for SQLAlchemySession.
Current (incorrect) code
from agents.extensions.memory import SQLAlchemySession
Correct code
from agents.extensions.memory.sqlalchemy_session import SQLAlchemySession
Found on the official docs page:
(https://openai.github.io/openai-agents-python/sessions/sqlalchemy_session)
This small fix will help avoid ImportError for users following the documentation.