|
3 | 3 | import typing |
4 | 4 |
|
5 | 5 | import httpx |
| 6 | + |
6 | 7 | # from .accounts.client import AccountsClient, AsyncAccountsClient # Module not yet available |
7 | 8 | from .billing.client import AsyncBillingClient, BillingClient |
8 | 9 | from .browsers.client import AsyncBrowsersClient, BrowsersClient |
|
11 | 12 | from .files.client import AsyncFilesClient, FilesClient |
12 | 13 | from .profiles.client import AsyncProfilesClient, ProfilesClient |
13 | 14 | from .sessions.client import AsyncSessionsClient, SessionsClient |
| 15 | +from .skills.client import AsyncSkillsClient, SkillsClient |
14 | 16 | from .workflows.client import AsyncWorkflowsClient, WorkflowsClient |
15 | 17 | from .wrapper.tasks.client import AsyncBrowserUseTasksClient, BrowserUseTasksClient |
16 | 18 |
|
@@ -88,6 +90,7 @@ def __init__( |
88 | 90 | self.files = FilesClient(client_wrapper=self._client_wrapper) |
89 | 91 | self.profiles = ProfilesClient(client_wrapper=self._client_wrapper) |
90 | 92 | self.workflows = WorkflowsClient(client_wrapper=self._client_wrapper) |
| 93 | + self.skills = SkillsClient(client_wrapper=self._client_wrapper) |
91 | 94 |
|
92 | 95 |
|
93 | 96 | class AsyncBrowserUse: |
@@ -163,6 +166,7 @@ def __init__( |
163 | 166 | self.files = AsyncFilesClient(client_wrapper=self._client_wrapper) |
164 | 167 | self.profiles = AsyncProfilesClient(client_wrapper=self._client_wrapper) |
165 | 168 | self.workflows = AsyncWorkflowsClient(client_wrapper=self._client_wrapper) |
| 169 | + self.skills = AsyncSkillsClient(client_wrapper=self._client_wrapper) |
166 | 170 |
|
167 | 171 |
|
168 | 172 | def _get_base_url(*, base_url: typing.Optional[str] = None, environment: BrowserUseEnvironment) -> str: |
|
0 commit comments