|
15 | 15 | from azure.core.rest import AsyncHttpResponse, HttpRequest |
16 | 16 |
|
17 | 17 | from .._utils.serialization import Deserializer, Serializer |
18 | | -from ..servicepatterns.aio.operations import ServicePatternsOperations |
19 | 18 | from ._configuration import AgentsClientConfiguration |
20 | 19 | from .operations import ( |
21 | 20 | AgentsClientOperationsMixin, |
|
36 | 35 | class AgentsClient(AgentsClientOperationsMixin): # pylint: disable=too-many-instance-attributes |
37 | 36 | """AgentsClient. |
38 | 37 |
|
39 | | - :ivar service_patterns: ServicePatternsOperations operations |
40 | | - :vartype service_patterns: azure.ai.agents.aio.operations.ServicePatternsOperations |
41 | 38 | :ivar threads: ThreadsOperations operations |
42 | 39 | :vartype threads: azure.ai.agents.aio.operations.ThreadsOperations |
43 | 40 | :ivar messages: MessagesOperations operations |
@@ -91,9 +88,6 @@ def __init__(self, endpoint: str, credential: "AsyncTokenCredential", **kwargs: |
91 | 88 | self._serialize = Serializer() |
92 | 89 | self._deserialize = Deserializer() |
93 | 90 | self._serialize.client_side_validation = False |
94 | | - self.service_patterns = ServicePatternsOperations( |
95 | | - self._client, self._config, self._serialize, self._deserialize |
96 | | - ) |
97 | 91 | self.threads = ThreadsOperations(self._client, self._config, self._serialize, self._deserialize) |
98 | 92 | self.messages = MessagesOperations(self._client, self._config, self._serialize, self._deserialize) |
99 | 93 | self.runs = RunsOperations(self._client, self._config, self._serialize, self._deserialize) |
|
0 commit comments