diff --git a/src/libs/Guardrails/Generated/Guardrails.Models.FailResult.g.cs b/src/libs/Guardrails/Generated/Guardrails.Models.FailResult.g.cs
index 187516a..9244dbe 100644
--- a/src/libs/Guardrails/Generated/Guardrails.Models.FailResult.g.cs
+++ b/src/libs/Guardrails/Generated/Guardrails.Models.FailResult.g.cs
@@ -55,12 +55,12 @@ public sealed partial class FailResult
///
/// Initializes a new instance of the class.
///
- ///
- /// Always 'fail' for FailResult.
- ///
///
/// The error message from the validator.
///
+ ///
+ /// Always 'fail' for FailResult.
+ ///
///
/// A suggested fix value from the validator.
///
@@ -82,8 +82,8 @@ public FailResult(
object? metadata,
string? validatedChunk)
{
- this.ErrorMessage = errorMessage ?? throw new global::System.ArgumentNullException(nameof(errorMessage));
this.Outcome = outcome;
+ this.ErrorMessage = errorMessage ?? throw new global::System.ArgumentNullException(nameof(errorMessage));
this.FixValue = fixValue;
this.ErrorSpans = errorSpans;
this.Metadata = metadata;
diff --git a/src/libs/Guardrails/Generated/Guardrails.Models.LLMResponse.g.cs b/src/libs/Guardrails/Generated/Guardrails.Models.LLMResponse.g.cs
index 11b66f7..e78c43b 100644
--- a/src/libs/Guardrails/Generated/Guardrails.Models.LLMResponse.g.cs
+++ b/src/libs/Guardrails/Generated/Guardrails.Models.LLMResponse.g.cs
@@ -48,15 +48,15 @@ public sealed partial class LLMResponse
///
/// Initializes a new instance of the class.
///
+ ///
+ /// The LLM output text.
+ ///
///
/// Number of tokens in the prompt.
///
///
/// Number of tokens in the response.
///
- ///
- /// The LLM output text.
- ///
///
/// Stream output chunks.
///
@@ -73,9 +73,9 @@ public LLMResponse(
global::System.Collections.Generic.IList? streamOutput,
global::System.Collections.Generic.IList? asyncStreamOutput)
{
- this.Output = output ?? throw new global::System.ArgumentNullException(nameof(output));
this.PromptTokenCount = promptTokenCount;
this.ResponseTokenCount = responseTokenCount;
+ this.Output = output ?? throw new global::System.ArgumentNullException(nameof(output));
this.StreamOutput = streamOutput;
this.AsyncStreamOutput = asyncStreamOutput;
}
diff --git a/src/libs/Guardrails/Generated/Guardrails.Models.ValidatorLog.g.cs b/src/libs/Guardrails/Generated/Guardrails.Models.ValidatorLog.g.cs
index 9d31f71..9dbae05 100644
--- a/src/libs/Guardrails/Generated/Guardrails.Models.ValidatorLog.g.cs
+++ b/src/libs/Guardrails/Generated/Guardrails.Models.ValidatorLog.g.cs
@@ -80,12 +80,12 @@ public sealed partial class ValidatorLog
///
/// The registry id of the validator.
///
- ///
- /// A unique identifier for the validator instance.
- ///
///
/// The JSON path to the validated property.
///
+ ///
+ /// A unique identifier for the validator instance.
+ ///
///
/// The value before validation was applied.
///
@@ -117,8 +117,8 @@ public ValidatorLog(
{
this.ValidatorName = validatorName ?? throw new global::System.ArgumentNullException(nameof(validatorName));
this.RegisteredName = registeredName ?? throw new global::System.ArgumentNullException(nameof(registeredName));
- this.PropertyPath = propertyPath ?? throw new global::System.ArgumentNullException(nameof(propertyPath));
this.InstanceId = instanceId;
+ this.PropertyPath = propertyPath ?? throw new global::System.ArgumentNullException(nameof(propertyPath));
this.ValueBeforeValidation = valueBeforeValidation;
this.ValueAfterValidation = valueAfterValidation;
this.ValidationResult = validationResult;