aboutsummaryrefslogtreecommitdiff
path: root/packages/openai-sdk-python/src/__init__.py
blob: 47a7569ef5c3bfeb900224a218ce2835bc78bdf5 (plain) (blame)
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
"""Supermemory OpenAI SDK - Enhanced OpenAI Python SDK with infinite context."""

from .infinite_chat import (
    SupermemoryOpenAI,
    SupermemoryInfiniteChatConfig,
    SupermemoryInfiniteChatConfigWithProviderName,
    SupermemoryInfiniteChatConfigWithProviderUrl,
    ProviderName,
    PROVIDER_MAP,
    create_supermemory_openai,
)

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,
)

__version__ = "0.1.0"

__all__ = [
    # Infinite Chat
    "SupermemoryOpenAI",
    "SupermemoryInfiniteChatConfig",
    "SupermemoryInfiniteChatConfigWithProviderName",
    "SupermemoryInfiniteChatConfigWithProviderUrl",
    "ProviderName",
    "PROVIDER_MAP",
    "create_supermemory_openai",
    # 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",
]