Skip to content

Commit 07c6b8b

Browse files
authored
Merge pull request #761 from UiPath/feature/add_agentmodel_integrationtools_inputschema_tests
feat(integration_tools): add integration service tools tests for agent model deserialization
2 parents f6f275c + dc54d05 commit 07c6b8b

File tree

4 files changed

+792
-6
lines changed

4 files changed

+792
-6
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath"
3-
version = "2.1.101"
3+
version = "2.1.102"
44
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

src/uipath/agent/models/agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ class AgentIntegrationToolResourceConfig(BaseAgentToolResourceConfig):
179179

180180
type: Literal[AgentToolType.INTEGRATION] = AgentToolType.INTEGRATION
181181
properties: AgentIntegrationToolProperties
182+
settings: Optional[AgentToolSettings] = Field(None, description="Tool settings")
182183
arguments: Optional[Dict[str, Any]] = Field(
183184
default_factory=dict, description="Tool arguments"
184185
)

0 commit comments

Comments
 (0)