diff --git a/pyproject.toml b/pyproject.toml index 7a62260..0333485 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "scrapybara" [tool.poetry] name = "scrapybara" -version = "2.3.6" +version = "2.3.7" description = "" readme = "README.md" authors = [] diff --git a/src/scrapybara/core/client_wrapper.py b/src/scrapybara/core/client_wrapper.py index 2579bf6..a024291 100644 --- a/src/scrapybara/core/client_wrapper.py +++ b/src/scrapybara/core/client_wrapper.py @@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { "X-Fern-Language": "Python", "X-Fern-SDK-Name": "scrapybara", - "X-Fern-SDK-Version": "2.3.6", + "X-Fern-SDK-Version": "2.3.7", } headers["x-api-key"] = self.api_key return headers diff --git a/src/scrapybara/types/act.py b/src/scrapybara/types/act.py index 658883c..a3be307 100644 --- a/src/scrapybara/types/act.py +++ b/src/scrapybara/types/act.py @@ -22,6 +22,7 @@ class ToolCallPart(BaseModel): id: Optional[str] = None tool_call_id: str tool_name: str + safety_checks: Optional[List[Any]] = None args: Dict[str, Any]