Compare commits

..

No commits in common. "aff1d7ecd61d723d879ebb07a9c32d2572a19a2f" and "58b144b34547a4567bb2ddae991144c390d5c545" have entirely different histories.

View File

@ -13,7 +13,7 @@ function getModels(remoteModelRes: OpenAIListModelResponse) {
if (config.disableGPT4) {
remoteModelRes.data = remoteModelRes.data.filter(
(m) => !m.id.startsWith("gpt-4") || m.id.startsWith("gpt-4o-mini"),
(m) => !m.id.startsWith("gpt-4") || m.id.startsWith("gpt-40-mini"),
);
}