Skip to content

Commit b352e70

Browse files
committed
Release 2.0.4
1 parent 48e7972 commit b352e70

File tree

4 files changed

+3
-13
lines changed

4 files changed

+3
-13
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "browser-use-sdk"
33

44
[tool.poetry]
55
name = "browser-use-sdk"
6-
version = "2.0.3"
6+
version = "2.0.4"
77
description = "The official Python library for the Browser Use API"
88
readme = "README.md"
99
authors = []

src/browser_use_sdk/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ def __init__(
2222

2323
def get_headers(self) -> typing.Dict[str, str]:
2424
headers: typing.Dict[str, str] = {
25-
"User-Agent": "browser-use-sdk/2.0.3",
25+
"User-Agent": "browser-use-sdk/2.0.4",
2626
"X-Fern-Language": "Python",
2727
"X-Fern-SDK-Name": "browser-use-sdk",
28-
"X-Fern-SDK-Version": "2.0.3",
28+
"X-Fern-SDK-Version": "2.0.4",
2929
**(self.get_custom_headers() or {}),
3030
}
3131
headers["X-Browser-Use-API-Key"] = self.api_key

src/browser_use_sdk/types/task_item_view.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,6 @@ class TaskItemView(UncheckedBaseModel):
5454
Optional additional metadata associated with the task set by the user
5555
"""
5656

57-
is_scheduled: typing_extensions.Annotated[bool, FieldMetadata(alias="isScheduled")] = pydantic.Field()
58-
"""
59-
Whether this task was created as a scheduled task
60-
"""
61-
6257
output: typing.Optional[str] = pydantic.Field(default=None)
6358
"""
6459
Final output/result of the task

src/browser_use_sdk/types/task_view.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,6 @@ class TaskView(UncheckedBaseModel):
5656
Optional additional metadata associated with the task set by the user
5757
"""
5858

59-
is_scheduled: typing_extensions.Annotated[bool, FieldMetadata(alias="isScheduled")] = pydantic.Field()
60-
"""
61-
Whether this task was created as a scheduled task
62-
"""
63-
6459
steps: typing.List[TaskStepView]
6560
output: typing.Optional[str] = pydantic.Field(default=None)
6661
"""

0 commit comments

Comments
 (0)