You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/human_in_the_loop.md
+10-11Lines changed: 10 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,9 @@ wait state within the LangGraph framework.
6
6
7
7
## Models Overview
8
8
9
-
### 1. CreateAction
9
+
### 1. CreateTask
10
10
11
-
The `CreateAction` model is utilized to create an escalation action within the UiPath Action Center as part of an interrupt context. The action will rely on a previously created UiPath app.
11
+
The `CreateTask` model is utilized to create an escalation action within the UiPath Action Center as part of an interrupt context. The action will rely on a previously created UiPath app.
12
12
After addressing the escalation, the current agent will resume execution.
13
13
For more information on UiPath apps, refer to the [UiPath Apps User Guide](https://docs.uipath.com/apps/automation-cloud/latest/user-guide/introduction).
14
14
@@ -19,34 +19,33 @@ For more information on UiPath apps, refer to the [UiPath Apps User Guide](https
19
19
-**app_key** (Optional[str]): The key of the app.
20
20
-**title** (str): The title of the action to create.
21
21
-**data** (Optional[Dict[str, Any]]): Values that the action will be populated with.
22
-
-**app_version** (Optional[int]): The version of the app (defaults to 1).
23
22
-**assignee** (Optional[str]): The username or email of the person assigned to handle the escalation.
For a practical implementation of the `CreateAction` model, refer to the [ticket-classification sample](https://github.com/UiPath/uipath-langchain-python/tree/main/samples/ticket-classification). This sample demonstrates how to create an action with dynamic input.
31
+
For a practical implementation of the `CreateTask` model, refer to the [ticket-classification sample](https://github.com/UiPath/uipath-langchain-python/tree/main/samples/ticket-classification). This sample demonstrates how to create an action with dynamic input.
33
32
34
33
---
35
34
36
-
### 2. WaitAction
35
+
### 2. WaitTask
37
36
38
-
The `WaitAction` model is used to wait for an action to be handled. This model is intended for scenarios where the action has already been created.
37
+
The `WaitTask` model is used to wait for a task to be handled. This model is intended for scenarios where the task has already been created.
39
38
40
39
#### Attributes:
41
40
42
-
-**action** (Action): The instance of the action to wait for.
41
+
-**task** (Task): The instance of the task to wait for.
43
42
-**app_folder_path** (Optional[str]): The folder path of the app.
prompt=("As an AI research specialist, your task is to scour the internet for pertinent information based on the user's specified search_instructions."
48
48
" Avoid summarizing or organizing the content; simply gather raw, unprocessed information. Do not engage in follow-up questions or discussions, "
0 commit comments