diff --git a/src/libs/DeepInfra/Generated/DeepInfra.Models.ModelFamilyOut.g.cs b/src/libs/DeepInfra/Generated/DeepInfra.Models.ModelFamilyOut.g.cs
index 4f3fc4b..6613aa1 100644
--- a/src/libs/DeepInfra/Generated/DeepInfra.Models.ModelFamilyOut.g.cs
+++ b/src/libs/DeepInfra/Generated/DeepInfra.Models.ModelFamilyOut.g.cs
@@ -29,6 +29,18 @@ public sealed partial class ModelFamilyOut
[global::System.Text.Json.Serialization.JsonRequired]
public required string Description { get; set; }
+ ///
+ /// Meta title for SEO
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("meta_title")]
+ public string? MetaTitle { get; set; }
+
+ ///
+ /// Meta description for SEO
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("meta_description")]
+ public string? MetaDescription { get; set; }
+
///
///
///
@@ -67,6 +79,12 @@ public sealed partial class ModelFamilyOut
///
/// Model family description
///
+ ///
+ /// Meta title for SEO
+ ///
+ ///
+ /// Meta description for SEO
+ ///
///
///
///
@@ -81,6 +99,8 @@ public ModelFamilyOut(
string description,
global::System.Collections.Generic.IList featuredModels,
global::System.Collections.Generic.IList ppSectionsOut,
+ string? metaTitle,
+ string? metaDescription,
global::System.Collections.Generic.IList? faqEntries)
{
this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name));
@@ -88,6 +108,8 @@ public ModelFamilyOut(
this.Description = description ?? throw new global::System.ArgumentNullException(nameof(description));
this.FeaturedModels = featuredModels ?? throw new global::System.ArgumentNullException(nameof(featuredModels));
this.PpSectionsOut = ppSectionsOut ?? throw new global::System.ArgumentNullException(nameof(ppSectionsOut));
+ this.MetaTitle = metaTitle;
+ this.MetaDescription = metaDescription;
this.FaqEntries = faqEntries;
}
diff --git a/src/libs/DeepInfra/openapi.yaml b/src/libs/DeepInfra/openapi.yaml
index 3d3f571..7ed196c 100644
--- a/src/libs/DeepInfra/openapi.yaml
+++ b/src/libs/DeepInfra/openapi.yaml
@@ -6484,6 +6484,16 @@ components:
title: Description
type: string
description: Model family description
+ meta_title:
+ title: Meta Title
+ type: string
+ description: Meta title for SEO
+ nullable: true
+ meta_description:
+ title: Meta Description
+ type: string
+ description: Meta description for SEO
+ nullable: true
featured_models:
title: Featured Models
type: array