Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/agents/extensions/memory/dapr_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@


class DaprSession(SessionABC):
"""Dapr State Store implementation of :pyclass:`agents.memory.session.Session`."""
"""Dapr State Store implementation of :class:`agents.memory.session.Session`."""

session_settings: SessionSettings | None = None

Expand Down
2 changes: 1 addition & 1 deletion src/agents/extensions/memory/mongodb_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@


class MongoDBSession(SessionABC):
"""MongoDB implementation of :pyclass:`agents.memory.session.Session`.
"""MongoDB implementation of :class:`agents.memory.session.Session`.

Conversation items are stored as individual documents in a ``messages``
collection. A lightweight ``sessions`` collection tracks metadata
Expand Down
2 changes: 1 addition & 1 deletion src/agents/extensions/memory/redis_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@


class RedisSession(SessionABC):
"""Redis implementation of :pyclass:`agents.memory.session.Session`."""
"""Redis implementation of :class:`agents.memory.session.Session`."""

session_settings: SessionSettings | None = None

Expand Down
2 changes: 1 addition & 1 deletion src/agents/extensions/memory/sqlalchemy_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@


class SQLAlchemySession(SessionABC):
"""SQLAlchemy implementation of :pyclass:`agents.memory.session.Session`."""
"""SQLAlchemy implementation of :class:`agents.memory.session.Session`."""

_table_init_locks: ClassVar[dict[tuple[str, str, str], threading.Lock]] = {}
_table_init_locks_guard: ClassVar[threading.Lock] = threading.Lock()
Expand Down
Loading