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
Fix YAML syntax error in CustomConfigPath description
- Fix indentation in multi-line description for CustomConfigPath parameter
- Remove problematic colon in example text that was breaking YAML parsing
- Ensure consistent formatting with other parameter descriptions
Copy file name to clipboardExpand all lines: template.yaml
+10-8Lines changed: 10 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -100,8 +100,8 @@ Parameters:
100
100
AllowedValues:
101
101
- "lending-package-sample"
102
102
- "default"
103
-
Description: Select the configuration preset for Pattern 1. Each configuration contains pre-tuned settings for specific document processing scenarios - see https://github.com/aws-samples/sample-genai-idp/blob/main/config_library/README.md.
104
-
Note: This selected configuration will be replaced by the Custom Configuration Path if specified.
103
+
Description: >-
104
+
Select the configuration preset for Pattern 1. Each configuration contains pre-tuned settings for specific document processing scenarios - see https://github.com/aws-samples/sample-genai-idp/blob/main/config_library/README.md. Note: This selected configuration will be replaced by the Custom Configuration Path if specified.
Description: Select the configuration preset for Pattern 2. Each configuration contains pre-tuned settings for specific document processing scenarios see https://github.com/aws-samples/sample-genai-idp/blob/main/config_library/README.md.
118
-
Note: Custom configuration overrides the selected pattern configuration when provided.
117
+
Description: >-
118
+
Select the configuration preset for Pattern 2. Each configuration contains pre-tuned settings for specific document processing scenarios see https://github.com/aws-samples/sample-genai-idp/blob/main/config_library/README.md. Note: Custom configuration overrides the selected pattern configuration when provided.
119
119
120
120
Pattern2CustomClassificationModelARN:
121
121
Type: String
@@ -141,8 +141,8 @@ Parameters:
141
141
AllowedValues:
142
142
- "rvl-cdip-package-sample"
143
143
- "default"
144
-
Description: Select the configuration preset for Pattern 3. Each configuration contains pre-tuned settings for specific document processing scenarios - see https://github.com/aws-samples/sample-genai-idp/blob/main/config_library/README.md.
145
-
Note: Custom configuration overrides the selected pattern configuration when provided.
144
+
Description: >-
145
+
Select the configuration preset for Pattern 3. Each configuration contains pre-tuned settings for specific document processing scenarios - see https://github.com/aws-samples/sample-genai-idp/blob/main/config_library/README.md. Note: Custom configuration overrides the selected pattern configuration when provided.
146
146
# HITL (A2I) Configuration
147
147
148
148
EnableHITL:
@@ -270,9 +270,11 @@ Parameters:
270
270
CustomConfigPath:
271
271
Type: String
272
272
Default: ""
273
-
Description: S3 URI pointing to your custom configuration YAML file. When provided, this configuration overrides the selected pattern preset and applies to all processing patterns. Leave blank to use the selected pattern configuration preset. Example: s3://my-bucket/custom-config/config.yaml
273
+
Description: >-
274
+
S3 URI pointing to your custom configuration YAML file. When provided, this configuration overrides the selected pattern preset and applies to all processing patterns.
275
+
Leave blank to use the selected pattern configuration preset. For example s3://my-bucket/custom-config/config.yaml
274
276
AllowedPattern: '^(|s3://[a-zA-Z0-9.\-_]+(/.*)?)'
275
-
ConstraintDescription: Must be empty or a valid S3 URI (Example: s3://my-bucket/custom-config/config.yaml)
277
+
ConstraintDescription: Must be empty or a valid S3 URI (e.g., s3://my-bucket/custom-config/config.yaml)
0 commit comments