We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c78e9d6 commit 39d7058Copy full SHA for 39d7058
src/agents/memory/providers/redis.py
@@ -3,6 +3,7 @@
3
import json
4
import time
5
from typing import TYPE_CHECKING
6
+from agents.memory.session import SessionABC
7
8
try:
9
import redis.asyncio as redis
@@ -13,7 +14,7 @@
13
14
raise ImportError("redis and openai-agents packages are required") from err
15
16
-class RedisSession:
17
+class RedisSession(SessionABC):
18
"""Redis-based implementation of session storage.
19
20
This implementation stores conversation history in Redis using lists and hashes.
0 commit comments