Skip to content

Commit e984fa2

Browse files
chore: Remove memory and document clients
1 parent 404a024 commit e984fa2

3 files changed

Lines changed: 0 additions & 173 deletions

File tree

src/zep_cloud/client.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
import os
55
import httpx
66
from .environment import ZepEnvironment
7-
from .external_clients.memory import MemoryClient, AsyncMemoryClient
8-
from .external_clients.document import DocumentClient, AsyncDocumentClient
97
from .external_clients.user import UserClient, AsyncUserClient
108
from .external_clients.graph import GraphClient, AsyncGraphClient
119

@@ -31,8 +29,6 @@ def __init__(
3129
follow_redirects=follow_redirects,
3230
httpx_client=httpx_client
3331
)
34-
self.memory = MemoryClient(client_wrapper=self._client_wrapper)
35-
self.document = DocumentClient(client_wrapper=self._client_wrapper)
3632
self.user = UserClient(client_wrapper=self._client_wrapper)
3733
self.graph = GraphClient(client_wrapper=self._client_wrapper)
3834

@@ -58,7 +54,5 @@ def __init__(
5854
follow_redirects=follow_redirects,
5955
httpx_client=httpx_client
6056
)
61-
self.memory = AsyncMemoryClient(client_wrapper=self._client_wrapper)
62-
self.document = AsyncDocumentClient(client_wrapper=self._client_wrapper)
6357
self.user = AsyncUserClient(client_wrapper=self._client_wrapper)
6458
self.graph = AsyncGraphClient(client_wrapper=self._client_wrapper)

src/zep_cloud/external_clients/document.py

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/zep_cloud/external_clients/memory.py

Lines changed: 0 additions & 151 deletions
This file was deleted.

0 commit comments

Comments
 (0)