Skip to content

Commit fb06497

Browse files
committed
Disable non-functional o-series models temporarily
Commented out `O4Mini` and `O3` models in `BalancedPreferred` and `QualityPreferred` lists, respectively, due to their current non-functionality. Added a comment explaining that the o-series models are disabled until a fix is identified.
1 parent 63f0573 commit fb06497

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/DesktopApp/ImageToPose.Core/Models/OperatingMode.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,17 +105,17 @@ public static class ModeModelMap
105105
OpenAIModel.Gpt41Nano,
106106
OpenAIModel.Gpt41Mini,
107107
};
108-
108+
// For now I have disabled the o-series models because they do not work and I do not yet know how to fix this.
109109
public static readonly IReadOnlyList<OpenAIModel> BalancedPreferred = new[]
110110
{
111-
OpenAIModel.O4Mini,
111+
//OpenAIModel.O4Mini,
112112
OpenAIModel.Gpt41,
113113
};
114114

115115
public static readonly IReadOnlyList<OpenAIModel> QualityPreferred = new[]
116116
{
117117
OpenAIModel.Gpt5,
118-
OpenAIModel.O3,
118+
//OpenAIModel.O3,
119119
};
120120

121121
public static IReadOnlyList<OpenAIModel> GetPriorityList(OperatingMode mode) => mode switch

0 commit comments

Comments
 (0)