aboutsummaryrefslogtreecommitdiff
path: root/packages/openai-sdk-python/src/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'packages/openai-sdk-python/src/__init__.py')
-rw-r--r--packages/openai-sdk-python/src/__init__.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/packages/openai-sdk-python/src/__init__.py b/packages/openai-sdk-python/src/__init__.py
deleted file mode 100644
index b8564471..00000000
--- a/packages/openai-sdk-python/src/__init__.py
+++ /dev/null
@@ -1,36 +0,0 @@
-"""Supermemory OpenAI SDK - Memory tools 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,
-)
-
-__version__ = "0.1.0"
-
-__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",
-]