|
// 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;
/// <summary>
/// Describes a model that can be deployed to Azure AI Foundry.
/// </summary>
public partial class AIFoundryModel
{
/// <summary>
/// The name of the model.
/// </summary>
public required string Name { get; init; }
/// <summary>
/// The version of the model.
/// </summary>
public required string Version { get; init; }
/// <summary>
/// The format or provider of the model (e.g., OpenAI, Microsoft, xAi, Deepseek).
/// </summary>
public required string Format { get; init; }
}
|