-
-
Notifications
You must be signed in to change notification settings - Fork 537
Change Logs
Tolga Kayhan edited this page Mar 21, 2023
·
28 revisions
-
Breaking Change: Typo fixed in Content Moderation CategoryScores, changing
Sexualminors
toSexualMinors
. Thanks to @HowToDoThis. - Tokenizer changes thanks to @IS4Code.
- Performance improvement
- Introduced a new method
TokenCount
that returns the number of tokens instead of a list. - Breaking Change: Removed overridden methods that were basically string conversions. I think these methods were not used much and it is fairly easy to do these conversions outside of the method. If you disagree, let me know and I can consider adding them back.
- Added .Net Standart Support, Massive thanks to @pdcruze and @ricaun
-
Breaking change:
ChatMessage.FromAssistance
is nowChatMessage.FromAssistant
. Thanks to @Swimburger - The Tokenizer method has been extended with
cleanUpCREOL
. You can use this option to clean up Windows-style line endings. Thanks to @gspentzas1991
- Removed Microsoft.AspNet.WebApi.Client dependency
- The action build device has been updated to ubuntu due to suspicions that the EOL of the vocab.bpe file had been altered in the last few Windows builds.
- Added support for TextEmbeddingAdaV2 Model.
- Introduced support for Whisper.
- Grateful thanks to @shanepowell for contributing RetrieveFileContent.
- Resolved an issue that was causing problems with the tokenizer. A clean build should hopefully address this.
- Added support for skip options validation
- We all beeen waiting for this moment. Please enjoy Chat GPT API
- Added support for Chat GPT API
- Fixed Tokenizer Bug, it was not working properly.
-
Breaking Changes
- Renamed
Engine
keyword toModel
in accordance with OpenAI's new naming convention. - Deprecated
DefaultEngineId
in favor ofDefaultModelId
. -
DefaultEngineId
andDefaultModelId
is not static anymore.
- Renamed
-
Added support for Azure OpenAI, a big thanks to @copypastedeveloper!
-
Added support for Tokenizer, inspired by @dluc's https://github.com/dluc/openai-tools repository. Please consider giving the repo a star.
These two changes are recent additions, so please let me know if you encounter any issues.
- Updated documentation links from beta.openai.com to platform.openai.com.
- Sad news, we have Breaking Changes.
-
SetDefaultEngineId()
replaced bySetDefaultModelId()
-
RetrieveModel(modelId)
will not use the default Model anymore. You have to pass modelId as a parameter. - I implemented Model overwrite logic.
- If you pass a modelId as a parameter it will overwrite the Default Model Id and object modelId
- If you pass your modelId in your object it will overwrite the Default Model Id
- If you don't pass any modelId it will use Default Model Id
- If you didn't set a Default Model Id, SDK will throw a null argument exception
- Parameter Model Id > Object Model Id > Default Model Id
- If you find this complicated please have a look at the implementation, OpenAI.SDK/Extensions/ModelExtension.cs -> ProcessModelId()
-
- New Method introduced: GetDefaultModelId();
- Some name changes about the legacy
engine
keyword with the newmodel
keyword - Started to use the latest Completion endpoint. This expecting to solve finetuning issues. Thanks to @maiemy and other reporters.
- Bug-fix, ImageEditRequest.Mask now is optional. thanks to @hanialaraj (if you are using edit request without mask your image has to be RGBA, RGB is not allowed)
- Bug-fix, now we are handling logprops response properly, thanks to @KosmonikOS
- Code clean-up, thanks to @KosmonikOS
- Bug-fix,added jsonignore for
stop
andstopAsList
, thanks to @Patapum
-
Breaking change.
-
EmbeddingCreateRequest.Input
was a string list type now it is a string type.
I have introducedInputAsList
property instead ofInput
. You may need to update your code according the change.
Both Input(string) and InputAsList(string list) avaliable for use
-
-
Added string and string List support for some of the propertis.
- CompletionCreateRequest --> Prompt & PromptAsList / Stop & StopAsList
- CreateModerationRequest --> Input & InputAsList
- EmbeddingCreateRequest --> Input & InputAsList
- Added support for new models (davinciv3 & edit models)
- Added support for Edit endpoint.
- (Warning: edit endpoint works with only some of the models, I couldn't find documentation about it, please follow the thread for more information: https://community.openai.com/t/is-edit-endpoint-documentation-incorrect/23361 )
- Some objects were created as class instead of record at last version. I change them to record. This will be breaking changes for some of you.
- With this version I think we cover all of openai APIs
- In next version I will be focusing on code cleanup and refactoring.
- If I don't need to relase bug-fix for this version also I will be updating library with dotnet 7 in next version as I promised.
- OpenAI made a surprise release yesterday and they have announced DALL·E API. I needed to do other things but I couldn't resist. Because I was rushing, some methods and class names may will change in the next release. Until that day, enjoy your creative AI.
- This library now fully support all DALL·E features.
- I tried to complete Edit API too bu unfortunately something was wrong with the documentation, I need to ask some questions in the community forum.
- Bug-fixes
- FineTuneCreateRequest suffix json property name changed "Suffix" to "suffix"
- CompletionCreateRequest user json property name changed "User" to "user" (Thanks to @shaneqld), also now it is a nullable string
- I have good news and bad news
- Moderation feature implementation is done. Now we support Moderation.
- Updated some request and response models to catch up with changes in OpenAI API
- New version has some breaking changes. Because we are in the fall season I needed to do some cleanup. Sorry for breaking changes but most of them are just renaming. I believe they can be solved before your coffee finish.
- I am hoping to support Edit Feature in the next version.
- Thanks to @c-d and @sarilouis for their contributions to this version.
- Now we support Embedding endpoint. Thanks to @sarilouis
- Bug fixes and updates for Models
- Code clean-up
- Removed deprecated Answers, Classifications, and Search endpoints https://community.openai.com/t/answers-classification-search-endpoint-deprecation/18532. They will be still available until December at web-API. If you still need them please do not update to this version.
- Code clean-up
- Organization id is not a required value anymore, Thanks to @samuelnygaard
- Removed deprecated Engine Endpoint and replaced it with Models Endpoint. Now Model response has more fields.
- Regarding OpenAI Engine naming, I had to rename Engine Enum and static fields. They are quite similar but you have to replace them with new ones. Please use Models class instead of Engine class.
- To support fast engine name changing I have created a new Method,
Models.ModelNameBuilder()
you may consider using it.