feat(models): add fable to the cost-ascending model list

This commit is contained in:
mika kuns
2026-08-07 11:14:21 +02:00
parent df9e85a28b
commit 15958b992d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ public static class ModelRegistry
public static readonly IReadOnlyList<string> Aliases = new[] { "sonnet", "opus", "haiku", "fable" };
/// <summary>Model aliases ordered cheapest → most capable. Single source for prompt cost guidance.</summary>
public static readonly IReadOnlyList<string> ByCostAscending = new[] { "haiku", "sonnet", "opus" };
public static readonly IReadOnlyList<string> ByCostAscending = new[] { "haiku", "sonnet", "opus", "fable" };
public const string DefaultAlias = "sonnet";
public const string PlanningAlias = "opus";
@@ -29,9 +29,9 @@ public class ModelRegistryTests
}
[Fact]
public void ByCostAscending_is_haiku_sonnet_opus()
public void ByCostAscending_is_haiku_sonnet_opus_fable()
{
Assert.Equal(new[] { "haiku", "sonnet", "opus" }, ModelRegistry.ByCostAscending);
Assert.Equal(new[] { "haiku", "sonnet", "opus", "fable" }, ModelRegistry.ByCostAscending);
}
[Theory]