Skip to content

Commit

Permalink
OpenAI-DotNet 8.0.1 (#324)
Browse files Browse the repository at this point in the history
- Fixed Thread.Run.Status enum ordering
  • Loading branch information
StephenHodgson committed Jun 10, 2024
1 parent 9675957 commit 41eac5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion OpenAI-DotNet/OpenAI-DotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ More context [on Roger Pincombe's blog](https://rogerpincombe.com/openai-dotnet-
<AssemblyOriginatorKeyFile>OpenAI-DotNet.pfx</AssemblyOriginatorKeyFile>
<IncludeSymbols>True</IncludeSymbols>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<Version>8.0.0</Version>
<Version>8.0.1</Version>
<PackageReleaseNotes>
Version 8.0.1
- Fixed Thread.Run.Status enum ordering
Version 8.0.0
- Updated Assistants Beta v2
- Added support for specifying project id
Expand Down
4 changes: 2 additions & 2 deletions OpenAI-DotNet/Threads/RunStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ public enum RunStatus
InProgress,
[EnumMember(Value = "requires_action")]
RequiresAction,
[EnumMember(Value = "incomplete")]
Incomplete,
[EnumMember(Value = "cancelling")]
Cancelling,
[EnumMember(Value = "cancelled")]
Cancelled,
[EnumMember(Value = "completed")]
Completed,
[EnumMember(Value = "incomplete")]
Incomplete,
[EnumMember(Value = "failed")]
Failed,
[EnumMember(Value = "expired")]
Expand Down

0 comments on commit 41eac5c

Please sign in to comment.