mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 21:13:37 +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
55 lines
2.4 KiB
C#
55 lines
2.4 KiB
C#
namespace AIStudio.Models;
|
|
|
|
/// <summary>
|
|
/// How many images a model accepts, where anybody has said so.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Both numbers exist in the wild and they are not the same one: Anthropic documents a limit for a
|
|
/// whole request, while vLLM limits each prompt through --limit-mm-per-prompt and ships with that
|
|
/// set to one image. A model card may state either without the other, which is why each is optional
|
|
/// on its own instead of sharing one "is known" flag.
|
|
///
|
|
/// Zero is a real answer here, not a stand-in for unknown: an operator can configure an engine to
|
|
/// accept no images at all. Unknown is null.
|
|
/// </remarks>
|
|
/// <param name="MaxPerMessage">How many images fit into one message, or null when nobody has said.</param>
|
|
/// <param name="MaxPerRequest">How many images fit into one request, or null when nobody has said.</param>
|
|
public readonly record struct ImageLimits(int? MaxPerMessage, int? MaxPerRequest)
|
|
{
|
|
/// <summary>
|
|
/// The number to show a user, or to plan with, where nothing is known.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This is a number for whoever needs one, never a limit to enforce. Today, saying that a model
|
|
/// takes several images says nothing about how many, and turning that into a hidden ceiling of
|
|
/// six would take something away from the models which handle a hundred.
|
|
/// </remarks>
|
|
public const int DEFAULT_MAX_IMAGES = 6;
|
|
|
|
/// <summary>
|
|
/// The limits of a model nobody has written anything about.
|
|
/// </summary>
|
|
public static readonly ImageLimits UNKNOWN = new(null, null);
|
|
|
|
/// <summary>
|
|
/// Whether either of the two numbers is known.
|
|
/// </summary>
|
|
public bool IsKnown => this.MaxPerMessage.HasValue || this.MaxPerRequest.HasValue;
|
|
|
|
/// <summary>
|
|
/// How many images may travel in one message, as far as anybody has said.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// A message is part of a request, so a message cannot carry more than a whole request may --
|
|
/// whichever of the two numbers is smaller decides, and a number nobody stated does not decide
|
|
/// anything. Null means nobody stated either, which is a gap and never a limit of zero.
|
|
/// </remarks>
|
|
public int? MaxInOneMessage => (this.MaxPerMessage, this.MaxPerRequest) switch
|
|
{
|
|
({ } perMessage, { } perRequest) => Math.Min(perMessage, perRequest),
|
|
({ } perMessage, null) => perMessage,
|
|
(null, { } perRequest) => perRequest,
|
|
|
|
_ => null,
|
|
};
|
|
} |