File: AIFoundryModel.Obsolete.cs
Web Access
Project: src\src\Aspire.Hosting.Azure.AIFoundry\Aspire.Hosting.Azure.AIFoundry.csproj (Aspire.Hosting.Azure.AIFoundry)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Aspire.Hosting.Azure;
 
// This file contains obsolete elements kept for backward compatibility.
 
public partial class AIFoundryModel
{
    // example
    // public static partial class AI21Labs
    // {
    //     /// <inheritdoc cref="AI21Jamba15Large"/>
    //     [Obsolete("Use AI21Jamba15Large instead.")]
    //     [EditorBrowsable(EditorBrowsableState.Never)]
    //     public static readonly AIFoundryModel Ai21Jamba15Large = new() { Name = "AI21-Jamba-1.5-Large", Version = "1", Format = "AI21 Labs" };
    // }
}