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"
33
44[tool .poetry ]
55name = " browser-use-sdk"
6- version = " 2.0.3 "
6+ version = " 2.0.4 "
77description = " The official Python library for the Browser Use API"
88readme = " README.md"
99authors = []
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 """
You can’t perform that action at this time.
0 commit comments