Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

Commit 7cd05f1

Browse files
committed
Fix
1 parent 6f94106 commit 7cd05f1

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

src/browser_use_sdk/wrapper/tasks/client.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def create_task(
4545
judge: typing.Optional[bool] = OMIT,
4646
judge_ground_truth: typing.Optional[str] = OMIT,
4747
judge_llm: typing.Optional[SupportedLlMs] = OMIT,
48+
skill_ids: typing.Optional[typing.Sequence[str]] = OMIT,
4849
request_options: typing.Optional[RequestOptions] = None,
4950
) -> WrappedStructuredTaskCreatedResponse[T]: ...
5051

@@ -70,6 +71,7 @@ def create_task(
7071
judge: typing.Optional[bool] = OMIT,
7172
judge_ground_truth: typing.Optional[str] = OMIT,
7273
judge_llm: typing.Optional[SupportedLlMs] = OMIT,
74+
skill_ids: typing.Optional[typing.Sequence[str]] = OMIT,
7375
request_options: typing.Optional[RequestOptions] = None,
7476
) -> WrappedTaskCreatedResponse: ...
7577

@@ -95,6 +97,7 @@ def create_task(
9597
judge: typing.Optional[bool] = OMIT,
9698
judge_ground_truth: typing.Optional[str] = OMIT,
9799
judge_llm: typing.Optional[SupportedLlMs] = OMIT,
100+
skill_ids: typing.Optional[typing.Sequence[str]] = OMIT,
98101
request_options: typing.Optional[RequestOptions] = None,
99102
) -> typing.Union[WrappedStructuredTaskCreatedResponse[T], WrappedTaskCreatedResponse]:
100103
if schema is not None and schema is not OMIT:
@@ -119,6 +122,7 @@ def create_task(
119122
judge=judge,
120123
judge_ground_truth=judge_ground_truth,
121124
judge_llm=judge_llm,
125+
skill_ids=skill_ids,
122126
request_options=request_options,
123127
)
124128

@@ -144,6 +148,7 @@ def create_task(
144148
judge=judge,
145149
judge_ground_truth=judge_ground_truth,
146150
judge_llm=judge_llm,
151+
skill_ids=skill_ids,
147152
request_options=request_options,
148153
)
149154

@@ -200,6 +205,7 @@ async def create_task(
200205
judge: typing.Optional[bool] = OMIT,
201206
judge_ground_truth: typing.Optional[str] = OMIT,
202207
judge_llm: typing.Optional[SupportedLlMs] = OMIT,
208+
skill_ids: typing.Optional[typing.Sequence[str]] = OMIT,
203209
request_options: typing.Optional[RequestOptions] = None,
204210
) -> AsyncWrappedStructuredTaskCreatedResponse[T]: ...
205211

@@ -225,6 +231,7 @@ async def create_task(
225231
judge: typing.Optional[bool] = OMIT,
226232
judge_ground_truth: typing.Optional[str] = OMIT,
227233
judge_llm: typing.Optional[SupportedLlMs] = OMIT,
234+
skill_ids: typing.Optional[typing.Sequence[str]] = OMIT,
228235
request_options: typing.Optional[RequestOptions] = None,
229236
) -> AsyncWrappedTaskCreatedResponse: ...
230237

@@ -250,6 +257,7 @@ async def create_task(
250257
judge: typing.Optional[bool] = OMIT,
251258
judge_ground_truth: typing.Optional[str] = OMIT,
252259
judge_llm: typing.Optional[SupportedLlMs] = OMIT,
260+
skill_ids: typing.Optional[typing.Sequence[str]] = OMIT,
253261
request_options: typing.Optional[RequestOptions] = None,
254262
) -> typing.Union[AsyncWrappedStructuredTaskCreatedResponse[T], AsyncWrappedTaskCreatedResponse]:
255263
if schema is not None and schema is not OMIT:
@@ -274,6 +282,7 @@ async def create_task(
274282
judge=judge,
275283
judge_ground_truth=judge_ground_truth,
276284
judge_llm=judge_llm,
285+
skill_ids=skill_ids,
277286
request_options=request_options,
278287
)
279288
return AsyncWrappedStructuredTaskCreatedResponse[T](id=res.id, session_id=res.session_id, schema=schema, client=self)
@@ -298,6 +307,7 @@ async def create_task(
298307
judge=judge,
299308
judge_ground_truth=judge_ground_truth,
300309
judge_llm=judge_llm,
310+
skill_ids=skill_ids,
301311
request_options=request_options,
302312
)
303313
return AsyncWrappedTaskCreatedResponse(id=res.id, session_id=res.session_id, client=self)

0 commit comments

Comments
 (0)