1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
"""Supermemory OpenAI SDK - Memory tools and middleware for OpenAI function calling."""
from .tools import (
SupermemoryTools,
SupermemoryToolsConfig,
MemoryObject,
MemorySearchResult,
MemoryAddResult,
SearchMemoriesTool,
AddMemoryTool,
MEMORY_TOOL_SCHEMAS,
create_supermemory_tools,
get_memory_tool_definitions,
execute_memory_tool_calls,
create_search_memories_tool,
create_add_memory_tool,
)
from .middleware import (
with_supermemory,
OpenAIMiddlewareOptions,
SupermemoryOpenAIWrapper,
)
from .utils import (
Logger,
create_logger,
get_last_user_message,
get_conversation_content,
convert_profile_to_markdown,
deduplicate_memories,
DeduplicatedMemories,
)
from .exceptions import (
SupermemoryError,
SupermemoryConfigurationError,
SupermemoryAPIError,
SupermemoryMemoryOperationError,
SupermemoryTimeoutError,
SupermemoryNetworkError,
)
__all__ = [
# Tools
"SupermemoryTools",
"SupermemoryToolsConfig",
"MemoryObject",
"MemorySearchResult",
"MemoryAddResult",
"SearchMemoriesTool",
"AddMemoryTool",
"MEMORY_TOOL_SCHEMAS",
"create_supermemory_tools",
"get_memory_tool_definitions",
"execute_memory_tool_calls",
"create_search_memories_tool",
"create_add_memory_tool",
# Middleware
"with_supermemory",
"OpenAIMiddlewareOptions",
"SupermemoryOpenAIWrapper",
# Utils
"Logger",
"create_logger",
"get_last_user_message",
"get_conversation_content",
"convert_profile_to_markdown",
"deduplicate_memories",
"DeduplicatedMemories",
# Exceptions
"SupermemoryError",
"SupermemoryConfigurationError",
"SupermemoryAPIError",
"SupermemoryMemoryOperationError",
"SupermemoryTimeoutError",
"SupermemoryNetworkError",
]
|