Skip to content

2.1.0

Latest
Compare
Choose a tag to compare
@IlliaChemolosov IlliaChemolosov released this 24 Jan 18:54
00d85e1

New Features

  • Added support for new GPT models:

    • gpt-3.5-turbo-1106
    • gpt-4-turbo
    • gpt-4o
    • gpt-4o-mini
    • o1-preview
    • o1-mini
  • Custom model initialization:

    • Introduced an initializer init(customValue: String) for Model enum to support custom model values.
    • Added a static function custom(_ value: String) to handle unknown model values gracefully.

Changes

  • Default model update:
    • The default API model has been changed from gpt-3.5-turbo to gpt-4o-mini.

Deprecations

  • Deprecated older GPT models:
    • gpt-3.5-turbo now suggests using gpt-3.5-turbo-1106.
    • gpt-3.5-turbo-0613 now suggests using gpt-3.5-turbo-1106.
    • gpt-3.5-turbo-16k now suggests using gpt-3.5-turbo-1106.
    • gpt-3.5-turbo-16k-0613 now suggests using gpt-3.5-turbo-1106.
    • gpt-4 now suggests using gpt-4-turbo.
    • gpt-4-0613 now suggests using gpt-4-turbo.
    • gpt-4-32k now suggests using gpt-4-turbo.
    • gpt-4-32k-0613 now suggests using gpt-4-turbo.

Bug Fixes

  • None reported for this release.

Miscellaneous

  • Code structure improvements and readability enhancements.