diff options
| author | CodeWithShreyans <[email protected]> | 2025-09-02 23:11:19 +0000 |
|---|---|---|
| committer | CodeWithShreyans <[email protected]> | 2025-09-02 23:11:19 +0000 |
| commit | cae7051d1a0547e78a8d32d865a89778456707ce (patch) | |
| tree | b5fbc018dc6e38b2618241046a8bf8129f34d4f2 /packages/openai-sdk-python/src/__init__.py | |
| parent | ux: support integration (#405) (diff) | |
| download | supermemory-cae7051d1a0547e78a8d32d865a89778456707ce.tar.xz supermemory-cae7051d1a0547e78a8d32d865a89778456707ce.zip | |
feat: new tools package (#407)
Diffstat (limited to 'packages/openai-sdk-python/src/__init__.py')
| -rw-r--r-- | packages/openai-sdk-python/src/__init__.py | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/packages/openai-sdk-python/src/__init__.py b/packages/openai-sdk-python/src/__init__.py index 47a7569e..b8564471 100644 --- a/packages/openai-sdk-python/src/__init__.py +++ b/packages/openai-sdk-python/src/__init__.py @@ -1,14 +1,4 @@ -"""Supermemory OpenAI SDK - Enhanced OpenAI Python SDK with infinite context.""" - -from .infinite_chat import ( - SupermemoryOpenAI, - SupermemoryInfiniteChatConfig, - SupermemoryInfiniteChatConfigWithProviderName, - SupermemoryInfiniteChatConfigWithProviderUrl, - ProviderName, - PROVIDER_MAP, - create_supermemory_openai, -) +"""Supermemory OpenAI SDK - Memory tools for OpenAI function calling.""" from .tools import ( SupermemoryTools, @@ -29,14 +19,6 @@ from .tools import ( __version__ = "0.1.0" __all__ = [ - # Infinite Chat - "SupermemoryOpenAI", - "SupermemoryInfiniteChatConfig", - "SupermemoryInfiniteChatConfigWithProviderName", - "SupermemoryInfiniteChatConfigWithProviderUrl", - "ProviderName", - "PROVIDER_MAP", - "create_supermemory_openai", # Tools "SupermemoryTools", "SupermemoryToolsConfig", |