Skip to content

Commit 4f8c112

Browse files
committed
added skills
1 parent c2d2db8 commit 4f8c112

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/browser_use_sdk/client.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import typing
44

55
import httpx
6+
67
# from .accounts.client import AccountsClient, AsyncAccountsClient # Module not yet available
78
from .billing.client import AsyncBillingClient, BillingClient
89
from .browsers.client import AsyncBrowsersClient, BrowsersClient
@@ -11,6 +12,7 @@
1112
from .files.client import AsyncFilesClient, FilesClient
1213
from .profiles.client import AsyncProfilesClient, ProfilesClient
1314
from .sessions.client import AsyncSessionsClient, SessionsClient
15+
from .skills.client import AsyncSkillsClient, SkillsClient
1416
from .workflows.client import AsyncWorkflowsClient, WorkflowsClient
1517
from .wrapper.tasks.client import AsyncBrowserUseTasksClient, BrowserUseTasksClient
1618

@@ -88,6 +90,7 @@ def __init__(
8890
self.files = FilesClient(client_wrapper=self._client_wrapper)
8991
self.profiles = ProfilesClient(client_wrapper=self._client_wrapper)
9092
self.workflows = WorkflowsClient(client_wrapper=self._client_wrapper)
93+
self.skills = SkillsClient(client_wrapper=self._client_wrapper)
9194

9295

9396
class AsyncBrowserUse:
@@ -163,6 +166,7 @@ def __init__(
163166
self.files = AsyncFilesClient(client_wrapper=self._client_wrapper)
164167
self.profiles = AsyncProfilesClient(client_wrapper=self._client_wrapper)
165168
self.workflows = AsyncWorkflowsClient(client_wrapper=self._client_wrapper)
169+
self.skills = AsyncSkillsClient(client_wrapper=self._client_wrapper)
166170

167171

168172
def _get_base_url(*, base_url: typing.Optional[str] = None, environment: BrowserUseEnvironment) -> str:

0 commit comments

Comments
 (0)