mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-14 18:43: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
56 lines
2.7 KiB
C#
56 lines
2.7 KiB
C#
using static AIStudio.Provider.Capability;
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
namespace AIStudio.Models.OpenAI;
|
|
|
|
/// <summary>
|
|
/// GPT-4o, including its mini and its audio preview.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The previous rules never named this family. Its models reached the last line of the OpenAI
|
|
/// function, the one that answers for everything nobody wrote a rule for, and that line happened
|
|
/// to describe GPT-4o exactly. Writing it down changes no answer and takes the family out of the
|
|
/// fallback, where a wrong answer looks like no answer.
|
|
/// </remarks>
|
|
public sealed class Gpt4oFamily : ModelFamily
|
|
{
|
|
/// <inheritdoc />
|
|
public override ModelVendor Vendor => ModelVendor.OPEN_AI;
|
|
|
|
/// <inheritdoc />
|
|
public override ModelSource Source => new("https://developers.openai.com/api/docs/models/gpt-4o", new DateOnly(2026, 9, 12), "The answer the previous rules gave these models through their fallback: images, tool calling, and web search on the Responses API. The model page states a 128,000 token window, which the minis and the search previews share.");
|
|
|
|
/// <inheritdoc />
|
|
public override IReadOnlyList<ModelSource> FurtherSources =>
|
|
[
|
|
new("https://github.com/openai/tiktoken/blob/main/tiktoken/model.py", new DateOnly(2026, 9, 12), "OpenAI's own mapping from model names to encodings. It maps the prefix \"gpt-4o-\" to o200k_base, which covers the minis and the search previews as well.")
|
|
];
|
|
|
|
/// <inheritdoc />
|
|
protected override void Declare(ModelFamilyBuilder builder)
|
|
{
|
|
builder.Rule("gpt-4o").AsPrefix()
|
|
.Capabilities(TEXT_INPUT | MULTIPLE_IMAGE_INPUT | TEXT_OUTPUT | FUNCTION_CALLING | WEB_SEARCH)
|
|
.Apis(RESPONSES_API)
|
|
.ContextWindow(128_000)
|
|
.Tokenizer(TokenizerKind.TIKTOKEN, "o200k_base");
|
|
|
|
//
|
|
// The search previews are the same generation and almost nothing like it: they search the
|
|
// web and do nothing else, no images and no tools, and they answer only through the chat
|
|
// completion API. Stated in full rather than inherited, because there is barely anything of
|
|
// the family left in them.
|
|
//
|
|
builder.Rule("gpt-4o-search-preview").AsExact()
|
|
.Capabilities(TEXT_INPUT | TEXT_OUTPUT | WEB_SEARCH)
|
|
.Apis(CHAT_COMPLETION_API)
|
|
.ContextWindow(128_000)
|
|
.Tokenizer(TokenizerKind.TIKTOKEN, "o200k_base");
|
|
|
|
builder.Rule("gpt-4o-mini-search-preview").AsExact()
|
|
.Capabilities(TEXT_INPUT | TEXT_OUTPUT | WEB_SEARCH)
|
|
.Apis(CHAT_COMPLETION_API)
|
|
.ContextWindow(128_000)
|
|
.Tokenizer(TokenizerKind.TIKTOKEN, "o200k_base");
|
|
}
|
|
} |