|
13 | 13 | from .generic.client import GenericClient |
14 | 14 | from .document.client import DocumentClient |
15 | 15 | from .tools.client import ToolsClient |
| 16 | +from .equation_validation.client import EquationValidationClient |
16 | 17 | from .equation_processing.client import EquationProcessingClient |
17 | 18 | from .code_execution.client import CodeExecutionClient |
18 | 19 | from .fso.client import FsoClient |
|
28 | 29 | from .generic.client import AsyncGenericClient |
29 | 30 | from .document.client import AsyncDocumentClient |
30 | 31 | from .tools.client import AsyncToolsClient |
| 32 | +from .equation_validation.client import AsyncEquationValidationClient |
31 | 33 | from .equation_processing.client import AsyncEquationProcessingClient |
32 | 34 | from .code_execution.client import AsyncCodeExecutionClient |
33 | 35 | from .fso.client import AsyncFsoClient |
@@ -103,6 +105,7 @@ def __init__( |
103 | 105 | self.generic = GenericClient(client_wrapper=self._client_wrapper) |
104 | 106 | self.document = DocumentClient(client_wrapper=self._client_wrapper) |
105 | 107 | self.tools = ToolsClient(client_wrapper=self._client_wrapper) |
| 108 | + self.equation_validation = EquationValidationClient(client_wrapper=self._client_wrapper) |
106 | 109 | self.equation_processing = EquationProcessingClient(client_wrapper=self._client_wrapper) |
107 | 110 | self.code_execution = CodeExecutionClient(client_wrapper=self._client_wrapper) |
108 | 111 | self.fso = FsoClient(client_wrapper=self._client_wrapper) |
@@ -262,6 +265,7 @@ def __init__( |
262 | 265 | self.generic = AsyncGenericClient(client_wrapper=self._client_wrapper) |
263 | 266 | self.document = AsyncDocumentClient(client_wrapper=self._client_wrapper) |
264 | 267 | self.tools = AsyncToolsClient(client_wrapper=self._client_wrapper) |
| 268 | + self.equation_validation = AsyncEquationValidationClient(client_wrapper=self._client_wrapper) |
265 | 269 | self.equation_processing = AsyncEquationProcessingClient(client_wrapper=self._client_wrapper) |
266 | 270 | self.code_execution = AsyncCodeExecutionClient(client_wrapper=self._client_wrapper) |
267 | 271 | self.fso = AsyncFsoClient(client_wrapper=self._client_wrapper) |
|
0 commit comments