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
10 changes: 10 additions & 0 deletions src/Aspire.Hosting.Azure.AIFoundry/AIFoundryModel.Generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ public static partial class Anthropic
/// Claude Sonnet 4.5 is Anthropic's most capable model for complex agents and an industry leader for coding and computer use.
/// </summary>
public static readonly AIFoundryModel ClaudeSonnet45 = new() { Name = "claude-sonnet-4-5", Version = "20250929", Format = "Anthropic" };

/// <summary>
/// Claude Sonnet 4.6 delivers frontier intelligence at scale—built for coding, agents, and enterprise workflows. With a 1M token context window (beta) and 128K max output, Sonnet 4.6 is ideal for coding, agents, office tasks, financial analysis, cybersecurity
/// </summary>
public static readonly AIFoundryModel ClaudeSonnet46 = new() { Name = "claude-sonnet-4-6", Version = "1", Format = "Anthropic" };
}

/// <summary>
Expand Down Expand Up @@ -1400,6 +1405,11 @@ public static partial class MistralAI
/// </summary>
public static readonly AIFoundryModel MistralDocumentAi2505 = new() { Name = "mistral-document-ai-2505", Version = "1", Format = "Mistral AI" };

/// <summary>
/// Document conversion to markdown with interleaved images and text
/// </summary>
public static readonly AIFoundryModel MistralDocumentAi2512 = new() { Name = "mistral-document-ai-2512", Version = "1", Format = "Mistral AI" };

/// <summary>
/// Mistral Large (2407) is an advanced Large Language Model (LLM) with state-of-the-art reasoning, knowledge and coding capabilities.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -853,5 +853,49 @@ public static partial class Local
/// <para>See Hugging Face model <see href="https://huggingface.co/Qwen/Qwen2.5-Coder-7B-Instruct">Qwen2.5-Coder-7B-Instruct</see> for details.</para>
/// </summary>
public static readonly AIFoundryModel Qwen25Coder7b = new() { Name = "qwen2.5-coder-7b", Version = "4", Format = "Microsoft" };

/// <summary>
/// <para>This model is an optimized version of Qwen3-0.6B to enable local inference. This model uses KLD Gradient quantization.</para>
/// <para>
/// <b>Model Description</b>
/// </para>
/// <list type="bullet">
/// <item>
/// <description>
/// <para>
/// <b>Developed by:</b> Microsoft</para>
/// </description>
/// </item>
/// <item>
/// <description>
/// <para>
/// <b>Model type:</b> ONNX</para>
/// </description>
/// </item>
/// <item>
/// <description>
/// <para>
/// <b>License:</b> apache-2.0</para>
/// </description>
/// </item>
/// <item>
/// <description>
/// <para>
/// <b>Model Description:</b> This is a conversion of the Qwen3-0.6B for local inference.</para>
/// </description>
/// </item>
/// <item>
/// <description>
/// <para>
/// <b>Disclaimer:</b> Model is only an optimization of the base model, any risk associated with the model is the responsibility of the user of the model. Please verify and test for your scenarios. There may be a slight difference in output from the base model with the optimizations applied. Note that optimizations applied are distinct from fine tuning and thus do not alter the intended uses or capabilities of the model.</para>
/// </description>
/// </item>
/// </list>
/// <para>
/// <b>Base Model Information</b>
/// </para>
/// <para>See Hugging Face model <see href="https://huggingface.co/Qwen/Qwen3-0.6B">Qwen3-0.6B</see> for details.</para>
/// </summary>
public static readonly AIFoundryModel Qwen306b = new() { Name = "qwen3-0.6b", Version = "1", Format = "Microsoft" };
}
}
Loading