You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current OpenAIModelType model enum and methods that have models as parameters could easily cause errors as any model could be chosen for any of those methods. By adding the new OpenAIEndpointModel type that corresponds to the compatibility list in the OpenAI docs, it’s much easier to select the fitting model.
The new type does contain duplicate model strings, which is intended to make it easier to maintain.
Those suggested changes are added (with the new OpenAI models that are missing as well) to the #107 PR (fully backward compatible by wrapping the new methods and adding @available to the old ones.
The text was updated successfully, but these errors were encountered:
The current
OpenAIModelType
model enum and methods that have models as parameters could easily cause errors as any model could be chosen for any of those methods. By adding the newOpenAIEndpointModel
type that corresponds to the compatibility list in the OpenAI docs, it’s much easier to select the fitting model.The new type does contain duplicate model strings, which is intended to make it easier to maintain.
Those suggested changes are added (with the new OpenAI models that are missing as well) to the #107 PR (fully backward compatible by wrapping the new methods and adding
@available
to the old ones.The text was updated successfully, but these errors were encountered: