diff --git a/src/libs/Reka/Generated/Reka.Models.CreateChatCompletionResponse.g.cs b/src/libs/Reka/Generated/Reka.Models.CreateChatCompletionResponse.g.cs
index a046e71..c71ec0e 100644
--- a/src/libs/Reka/Generated/Reka.Models.CreateChatCompletionResponse.g.cs
+++ b/src/libs/Reka/Generated/Reka.Models.CreateChatCompletionResponse.g.cs
@@ -70,6 +70,10 @@ public sealed partial class CreateChatCompletionResponse
///
/// The model used for the chat completion.
///
+ ///
+ /// A list of chat completion choices.
+ ///
+ ///
///
/// The object type (e.g., "chat.completion").
///
@@ -79,10 +83,6 @@ public sealed partial class CreateChatCompletionResponse
///
/// System fingerprint for the response.
///
- ///
- /// A list of chat completion choices.
- ///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -97,11 +97,11 @@ public CreateChatCompletionResponse(
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
this.Model = model ?? throw new global::System.ArgumentNullException(nameof(model));
- this.Choices = choices ?? throw new global::System.ArgumentNullException(nameof(choices));
- this.Usage = usage ?? throw new global::System.ArgumentNullException(nameof(usage));
this.Object = @object;
this.Created = created;
this.SystemFingerprint = systemFingerprint;
+ this.Choices = choices ?? throw new global::System.ArgumentNullException(nameof(choices));
+ this.Usage = usage ?? throw new global::System.ArgumentNullException(nameof(usage));
}
///
diff --git a/src/libs/Reka/Generated/Reka.Models.JsonSchemaConfig.g.cs b/src/libs/Reka/Generated/Reka.Models.JsonSchemaConfig.g.cs
index 339f440..6630f05 100644
--- a/src/libs/Reka/Generated/Reka.Models.JsonSchemaConfig.g.cs
+++ b/src/libs/Reka/Generated/Reka.Models.JsonSchemaConfig.g.cs
@@ -47,12 +47,12 @@ public sealed partial class JsonSchemaConfig
///
/// Name for the schema. Alphanumeric with underscores/dashes, max 64 characters.
///
- ///
- /// Description of the expected output format.
- ///
///
/// Valid JSON Schema defining the expected structure.
///
+ ///
+ /// Description of the expected output format.
+ ///
///
/// Whether to enforce exact schema compliance.
/// Default Value: false
@@ -67,8 +67,8 @@ public JsonSchemaConfig(
bool? strict)
{
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.Schema = schema ?? throw new global::System.ArgumentNullException(nameof(schema));
this.Description = description;
+ this.Schema = schema ?? throw new global::System.ArgumentNullException(nameof(schema));
this.Strict = strict;
}
diff --git a/src/libs/Reka/Generated/Reka.Models.Tool.g.cs b/src/libs/Reka/Generated/Reka.Models.Tool.g.cs
index 6006070..6e86d15 100644
--- a/src/libs/Reka/Generated/Reka.Models.Tool.g.cs
+++ b/src/libs/Reka/Generated/Reka.Models.Tool.g.cs
@@ -40,12 +40,12 @@ public sealed partial class Tool
///
/// The name of the function.
///
- ///
- /// A description of what the function does.
- ///
///
/// The parameters the function accepts, described as a JSON Schema object.
///
+ ///
+ /// A description of what the function does.
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -55,8 +55,8 @@ public Tool(
string? description)
{
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
- this.Parameters = parameters ?? throw new global::System.ArgumentNullException(nameof(parameters));
this.Description = description;
+ this.Parameters = parameters ?? throw new global::System.ArgumentNullException(nameof(parameters));
}
///
diff --git a/src/libs/Reka/Generated/Reka.Models.ToolCall.g.cs b/src/libs/Reka/Generated/Reka.Models.ToolCall.g.cs
index f63cfcd..85d401e 100644
--- a/src/libs/Reka/Generated/Reka.Models.ToolCall.g.cs
+++ b/src/libs/Reka/Generated/Reka.Models.ToolCall.g.cs
@@ -41,10 +41,10 @@ public sealed partial class ToolCall
///
/// The ID of the tool call.
///
+ ///
///
/// The type of the tool call. Always "function".
///
- ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -54,8 +54,8 @@ public ToolCall(
global::Reka.ToolCallType type)
{
this.Id = id ?? throw new global::System.ArgumentNullException(nameof(id));
- this.Function = function ?? throw new global::System.ArgumentNullException(nameof(function));
this.Type = type;
+ this.Function = function ?? throw new global::System.ArgumentNullException(nameof(function));
}
///