Skip to content

Commit

Permalink
RunRetrieve - add RunStatus.Incomplete
Browse files Browse the repository at this point in the history
REF: https://platform.openai.com/docs/assistants/how-it-works/managing-threads-and-messages
The "run step object" documentation doesn't mention this as a possible status, but it is referenced at the above page, and I have observed it is used
  • Loading branch information
Denis Papp committed May 2, 2024
1 parent 9ef1395 commit 21567cb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions OpenAI.SDK/ObjectModels/StaticValueHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ public static class RunStatus
public static string Failed => "failed";
public static string Completed => "completed";
public static string Expired => "expired";
public static string Incomplete => "incomplete";
}

public static class RequiredActionTypes
Expand Down

0 comments on commit 21567cb

Please sign in to comment.