File tree Expand file tree Collapse file tree 4 files changed +3
-13
lines changed Expand file tree Collapse file tree 4 files changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "browser-use-sdk"
3
3
4
4
[tool .poetry ]
5
5
name = " browser-use-sdk"
6
- version = " 2.0.3 "
6
+ version = " 2.0.4 "
7
7
description = " The official Python library for the Browser Use API"
8
8
readme = " README.md"
9
9
authors = []
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ def __init__(
22
22
23
23
def get_headers (self ) -> typing .Dict [str , str ]:
24
24
headers : typing .Dict [str , str ] = {
25
- "User-Agent" : "browser-use-sdk/2.0.3 " ,
25
+ "User-Agent" : "browser-use-sdk/2.0.4 " ,
26
26
"X-Fern-Language" : "Python" ,
27
27
"X-Fern-SDK-Name" : "browser-use-sdk" ,
28
- "X-Fern-SDK-Version" : "2.0.3 " ,
28
+ "X-Fern-SDK-Version" : "2.0.4 " ,
29
29
** (self .get_custom_headers () or {}),
30
30
}
31
31
headers ["X-Browser-Use-API-Key" ] = self .api_key
Original file line number Diff line number Diff line change @@ -54,11 +54,6 @@ class TaskItemView(UncheckedBaseModel):
54
54
Optional additional metadata associated with the task set by the user
55
55
"""
56
56
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
-
62
57
output : typing .Optional [str ] = pydantic .Field (default = None )
63
58
"""
64
59
Final output/result of the task
Original file line number Diff line number Diff line change @@ -56,11 +56,6 @@ class TaskView(UncheckedBaseModel):
56
56
Optional additional metadata associated with the task set by the user
57
57
"""
58
58
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
-
64
59
steps : typing .List [TaskStepView ]
65
60
output : typing .Optional [str ] = pydantic .Field (default = None )
66
61
"""
You can’t perform that action at this time.
0 commit comments