feat: add MemorySyncTimeoutError

This commit is contained in:
Stream 2025-08-20 17:45:53 +08:00
parent d535818505
commit f977dc410a
No known key found for this signature in database
GPG Key ID: 9475891C9507B4F3
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
class MemorySyncTimeoutError(Exception):
def __init__(self, app_id: str, conversation_id: str):
self.app_id = app_id
self.conversation_id = conversation_id
self.message = "Memory synchronization timeout after 50 seconds"
super().__init__(self.message)