Skip to content

Releases: RageAgainstThePixel/com.openai.unity

com.openai.unity 3.0.3

06 Mar 19:10
Compare
Choose a tag to compare

What's Changed

  • Added support for multiple inputs in EmbeddingsRequest
  • Added better model validation in all endpoints
  • Added missing LogitBias to chat request

Full Changelog: 3.0.2...3.0.3

com.openai.unity 3.0.2

04 Mar 00:54
Compare
Choose a tag to compare

What's Changed

  • Fixed #38 max token parameter not being properly assigned in constructor.

Full Changelog: 3.0.1...3.0.2

com.openai.unity 3.0.1

02 Mar 19:36
Compare
Choose a tag to compare

What's Changed

  • Fixed missing icons
  • Fixed chat parameters
  • Removed spam logging leftover from testing
  • Updated docs

Full Changelog: 3.0.0...3.0.1

com.openai.unity 3.0.0

02 Mar 00:03
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.2.5...3.0.0

com.openai.unity 2.2.5

18 Feb 22:33
Compare
Choose a tag to compare

What's Changed

  • Renamed CreateImageVariationAsync parameter imagePath -> texture
  • Add param description in the documentation that the texture should
    have read/write enabled and compression set to none.
  • Updated docs with Texture2D example

Special thanks to @EvanCrabtree for submitting these changes.

Full Changelog: 2.2.4...2.2.5

com.openai.unity 2.2.4

17 Feb 03:52
Compare
Choose a tag to compare

What's Changed

  • support native texture image variations and edits
    • texture's require the following import settings:
      • no compression
      • read/write enabled
  • made image edit mask optional as long as main texture has transparency
  • updated AuthInfo to validate apiKey and organizationId a bit better
  • renamed OPEN_AI_ORGANIZATION_ID -> OPENAI_ORGANIZATION_ID
  • updated dependencies
  • updated docs

Full Changelog: 2.2.3...2.2.4

com.openai.unity 2.2.3

10 Feb 04:03
Compare
Choose a tag to compare

What's Changed

  • #31 added OPEN_AI_ORGANIZATION_ID environment variable
  • deprecated Organization use OrganizationId instead

Full Changelog: 2.2.2...2.2.3

com.openai.unity 2.2.2

07 Feb 18:41
Compare
Choose a tag to compare

What's Changed

  • #29 Added OpenAIConfigurationSettings input field validation
  • Renamed OpenAIConfigurationSettings.Organization ->
    OpenAIConfigurationSettings.OrganizationId
  • Added changelog and documentation links in package.json
  • Updated Readme and docs
  • Updated some tests

Full Changelog: 2.2.1...2.2.2

com.openai.unity 2.2.1

04 Feb 06:56
Compare
Choose a tag to compare

What's Changed

  • Show an error helpbox in training window if no api key is set
  • Update the default training base model

Full Changelog: 2.2.0...2.2.1

com.openai.unity 2.2.0

04 Feb 06:46
Compare
Choose a tag to compare

What's Changed

  • #24 Added Fine Tuning window to train models right in the Unity Editor!
  • Fixes issue when searching and loading .openai config in json format
  • Immutable response objects
  • Renamed CreateFineTuneAsync -> CreateFineTuneJobAsync
  • Renamed CancelFineTuneJob -> CancelFineTuneJobAsync
  • removed OpenAI.Models.Permission.Created
  • added OpenAI.Models.Permission.CreatedAt
  • added OpenAI.Models.Permission.CreatedAtUnixTime
  • FineTuneJobResponse is now internal but implicitly casted to FineTuneJob
  • Changed User-Agent of library to com.openai.unity
  • Renamed Choice.Logprobs -> Choice.LogProbabilities
  • Renamed OpenAI.Completions.Logprobs -> OpenAI.Completions.OpenAI.Completions
  • Renamed CompletionRequest parameter names:
    • max_tokens -> maxTokens
    • top_p -> topP
  • Updated CompletionRequest to accept IEnumerable<string> values for prompts and stopSequences
  • Refactored all endpoints to use new response validation extension
  • Added CancellationToken to most endpoints that had long running operations

Full Changelog: 2.1.0...2.2.0