Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ public sealed partial class CreateChatCompletionResponse
/// <param name="model">
/// The model used for the chat completion.
/// </param>
/// <param name="choices">
/// A list of chat completion choices.
/// </param>
/// <param name="usage"></param>
/// <param name="object">
/// The object type (e.g., "chat.completion").
/// </param>
Expand All @@ -79,10 +83,6 @@ public sealed partial class CreateChatCompletionResponse
/// <param name="systemFingerprint">
/// System fingerprint for the response.
/// </param>
/// <param name="choices">
/// A list of chat completion choices.
/// </param>
/// <param name="usage"></param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
Expand All @@ -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));
}

/// <summary>
Expand Down
8 changes: 4 additions & 4 deletions src/libs/Reka/Generated/Reka.Models.JsonSchemaConfig.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ public sealed partial class JsonSchemaConfig
/// <param name="name">
/// Name for the schema. Alphanumeric with underscores/dashes, max 64 characters.
/// </param>
/// <param name="description">
/// Description of the expected output format.
/// </param>
/// <param name="schema">
/// Valid JSON Schema defining the expected structure.
/// </param>
/// <param name="description">
/// Description of the expected output format.
/// </param>
/// <param name="strict">
/// Whether to enforce exact schema compliance.<br/>
/// Default Value: false
Expand All @@ -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;
}

Expand Down
8 changes: 4 additions & 4 deletions src/libs/Reka/Generated/Reka.Models.Tool.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ public sealed partial class Tool
/// <param name="name">
/// The name of the function.
/// </param>
/// <param name="description">
/// A description of what the function does.
/// </param>
/// <param name="parameters">
/// The parameters the function accepts, described as a JSON Schema object.
/// </param>
/// <param name="description">
/// A description of what the function does.
/// </param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
Expand All @@ -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));
}

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions src/libs/Reka/Generated/Reka.Models.ToolCall.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ public sealed partial class ToolCall
/// <param name="id">
/// The ID of the tool call.
/// </param>
/// <param name="function"></param>
/// <param name="type">
/// The type of the tool call. Always "function".
/// </param>
/// <param name="function"></param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
Expand All @@ -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));
}

/// <summary>
Expand Down