DefaultExecutionProfileValidationOptions returns the permissive built-in gates.
()
| 131 | |
| 132 | // DefaultExecutionProfileValidationOptions returns the permissive built-in gates. |
| 133 | func DefaultExecutionProfileValidationOptions() ExecutionProfileValidationOptions { |
| 134 | return ExecutionProfileValidationOptions{ |
| 135 | AllowProviderOverride: true, |
| 136 | AllowSandboxNone: true, |
| 137 | AllowSandboxRef: true, |
| 138 | MaxCoordinatorGuidanceBytes: defaultCoordinatorGuidanceMaxBytes, |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | // Normalize returns a canonical copy with trimmed fields, default modes, and stable selector sets. |
| 143 | func (p *ExecutionProfile) Normalize(options ExecutionProfileValidationOptions) (ExecutionProfile, error) { |
no outgoing calls