diff --git a/concepts/prompt_target.html b/concepts/prompt_target.html
index 480d66d4..cd971cd5 100755
--- a/concepts/prompt_target.html
+++ b/concepts/prompt_target.html
@@ -210,10 +210,9 @@ Each Prompt target specifies how a particular type of prompt should be handled,
Parameters are the pieces of information that Arch needs to extract from the user’s prompt to perform the desired action.
-Each parameter can be marked as required or optional.
-Here is a full list of parameter attributes that Arch can support:Defining Parameters
+Defining Parameters
Attribute |
@@ -221,35 +220,29 @@ Here is a full list of parameter attributes that Arch can support:
||
|---|---|---|
|
-Specifies identifier of parameters |
+|
|
+Specifies name of the parameter. |
|
|
-Specifies the data type of the parameter. |
-|
|
+||
|
Provides a human-readable explanation of the parameter’s purpose. |
|
|
-Indicates whether the parameter is mandatory or optional |
+|
|
+Specifies the data type. Supported types include: int, str, float, bool, list, set, dict, tuple |
|
|
+||
|
Specifies a default value for the parameter if not provided by the user. |
|
|
-Used in the context of arrays to define the schema of items within an array. |
-|
|
-Specifies a format for the parameter value, e.g., date and email |
+Specifies a format for the parameter value. For example: 2019-12-31 for a date value. |
|
-Lists the allowable values for the parameter. |
+Lists of allowable values for the parameter with data type matching the |
|
-Defines the minimum acceptable value for numeric parameters. |
+|
|
+Specifies the attribute of the elements when type euqals list, set, dict, tuple. Usage Example: |
|
|
-Specifies the maximum acceptable value for numeric parameters. |
+|
|
+Indicates whether the parameter is mandatory or optional. Valid values: true or false |
Note
+For a complete refernce of attributes that you can configure in a prompt target, see here.
+