Skip to content

Commit 07629dc

Browse files
authored
add requireConversationalConfirmation field for base tool class [JAR-9208] (#1381)
1 parent 7bf6c09 commit 07629dc

File tree

1 file changed

+3
-0
lines changed
  • packages/uipath/src/uipath/agent/models

1 file changed

+3
-0
lines changed

packages/uipath/src/uipath/agent/models/agent.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,9 @@ class BaseResourceProperties(BaseCfg):
282282
"""Base resource properties model."""
283283

284284
example_calls: Optional[list[ExampleCall]] = Field(None, alias="exampleCalls")
285+
require_conversational_confirmation: bool = Field(
286+
default=False, alias="requireConversationalConfirmation"
287+
)
285288

286289

287290
class AgentToolSettings(BaseCfg):

0 commit comments

Comments
 (0)