mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-14 17:43:38 +00:00
Some checks are pending
Build and Release / Determine run mode (push) Waiting to run
Build and Release / Sync Flatpak repo (push) Blocked by required conditions
Build and Release / Collect Flatpak artifacts (push) Blocked by required conditions
Build and Release / Verify (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
namespace AIStudio.Models;
|
|
|
|
/// <summary>
|
|
/// Who built a model, as opposed to who serves it.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The two are different questions, and mixing them up is what made the old rules delegate between
|
|
/// vendors until they called each other in circles. A provider is where a request goes; a vendor is
|
|
/// whose model answers it. Llama comes from Meta whether it arrives through Groq, Fireworks, or a
|
|
/// local Ollama.
|
|
///
|
|
/// A rule may bind itself to a vendor, which matters where the same name means two different models
|
|
/// depending on who made it. It is also what a gateway declares when it unwraps a name such as
|
|
/// "anthropic/claude-sonnet-4-0".
|
|
///
|
|
/// This list grows with the families being ported. Only vendors whose models the app already has
|
|
/// rules for are named here; adding a member is part of adding the family, not a step of its own.
|
|
/// </remarks>
|
|
public enum ModelVendor
|
|
{
|
|
/// <summary>
|
|
/// We do not know who built this model. This is the answer for everything not recognized.
|
|
/// </summary>
|
|
UNKNOWN,
|
|
|
|
OPEN_AI,
|
|
ANTHROPIC,
|
|
GOOGLE,
|
|
MISTRAL_AI,
|
|
ALIBABA,
|
|
DEEP_SEEK,
|
|
PERPLEXITY,
|
|
XAI,
|
|
META,
|
|
MICROSOFT,
|
|
NVIDIA,
|
|
IBM,
|
|
COHERE,
|
|
MOONSHOT_AI,
|
|
TENCENT,
|
|
Z_AI,
|
|
MINIMAX,
|
|
AI2,
|
|
BYTE_DANCE,
|
|
TII,
|
|
INCLUSION_AI,
|
|
BAIDU,
|
|
HUGGING_FACE,
|
|
SERVICE_NOW,
|
|
SHANGHAI_AI_LAB,
|
|
SWISS_AI,
|
|
NOMIC_AI,
|
|
} |