File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44import os
55import httpx
66from .environment import ZepEnvironment
7- from .external_clients .memory import MemoryClient , AsyncMemoryClient
8- from .external_clients .document import DocumentClient , AsyncDocumentClient
97from .external_clients .user import UserClient , AsyncUserClient
108from .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 )
Load diff This file was deleted.
Load diff This file was deleted.
You can’t perform that action at this time.
0 commit comments