|
13 | 13 | from .generic.client import GenericClient |
14 | 14 | from .document.client import DocumentClient |
15 | 15 | from .tools.client import ToolsClient |
| 16 | +from .equation_processing.client import EquationProcessingClient |
16 | 17 | from .code_execution.client import CodeExecutionClient |
17 | 18 | from .fso.client import FsoClient |
18 | 19 | from .pic.client import PicClient |
|
27 | 28 | from .generic.client import AsyncGenericClient |
28 | 29 | from .document.client import AsyncDocumentClient |
29 | 30 | from .tools.client import AsyncToolsClient |
| 31 | +from .equation_processing.client import AsyncEquationProcessingClient |
30 | 32 | from .code_execution.client import AsyncCodeExecutionClient |
31 | 33 | from .fso.client import AsyncFsoClient |
32 | 34 | from .pic.client import AsyncPicClient |
@@ -101,6 +103,7 @@ def __init__( |
101 | 103 | self.generic = GenericClient(client_wrapper=self._client_wrapper) |
102 | 104 | self.document = DocumentClient(client_wrapper=self._client_wrapper) |
103 | 105 | self.tools = ToolsClient(client_wrapper=self._client_wrapper) |
| 106 | + self.equation_processing = EquationProcessingClient(client_wrapper=self._client_wrapper) |
104 | 107 | self.code_execution = CodeExecutionClient(client_wrapper=self._client_wrapper) |
105 | 108 | self.fso = FsoClient(client_wrapper=self._client_wrapper) |
106 | 109 | self.pic = PicClient(client_wrapper=self._client_wrapper) |
@@ -259,6 +262,7 @@ def __init__( |
259 | 262 | self.generic = AsyncGenericClient(client_wrapper=self._client_wrapper) |
260 | 263 | self.document = AsyncDocumentClient(client_wrapper=self._client_wrapper) |
261 | 264 | self.tools = AsyncToolsClient(client_wrapper=self._client_wrapper) |
| 265 | + self.equation_processing = AsyncEquationProcessingClient(client_wrapper=self._client_wrapper) |
262 | 266 | self.code_execution = AsyncCodeExecutionClient(client_wrapper=self._client_wrapper) |
263 | 267 | self.fso = AsyncFsoClient(client_wrapper=self._client_wrapper) |
264 | 268 | self.pic = AsyncPicClient(client_wrapper=self._client_wrapper) |
|
0 commit comments