Updated flow card
Browse files
README.md
CHANGED
@@ -7,13 +7,14 @@ Reads input from the user's standard input.
|
|
7 |
|
8 |
## Configuration parameters
|
9 |
|
10 |
-
request_multi_line_input_flag (Boolean): If true, the user will be prompted to enter multiple lines of input. If false, the user will be prompted to enter a single line of input.
|
11 |
|
12 |
-
query_message_prompt_template (Dict):
|
13 |
-
template (String): The template for the message to be presented to the user (e.g., "The last `{{action}}` completed successfully. Do you have any feedback that should be considered before selecting the next action?"). Default value is "".
|
14 |
-
input_variables (List): The list of variables to be used in the template (e.g., ["action"]). Default value is [].
|
|
|
15 |
|
16 |
-
input_keys (List): The list of input keys that should be passed to the Flow as input. Default value is [].
|
17 |
|
18 |
## Input interface
|
19 |
|
|
|
7 |
|
8 |
## Configuration parameters
|
9 |
|
10 |
+
* **request_multi_line_input_flag** (Boolean): If true, the user will be prompted to enter multiple lines of input. If false, the user will be prompted to enter a single line of input.
|
11 |
|
12 |
+
* **query_message_prompt_template** (Dict):
|
13 |
+
* **template** (String): The template for the message to be presented to the user (e.g., "Hi {{name}}, The last `{{action}}` completed successfully. Do you have any feedback that should be considered before selecting the next action?"). Default value is "".
|
14 |
+
* **input_variables** (Optional)(List): The list of variables to be used in the template (e.g., ["action"]). Default value is [].
|
15 |
+
* **partial_variables** (Optional)(Dict): Dictionary of partial variables to be used in the template (a subset of the required values, as to create a new prompt template which expects only the remaining subset of values)(e.g. {"name": "John"} )
|
16 |
|
17 |
+
* **input_keys** (List): The list of input keys that should be passed to the Flow as input. Default value is [].
|
18 |
|
19 |
## Input interface
|
20 |
|