Class RunStepResponse
- Namespace
- OpenAI.
Object Models. Response Models
- Assembly
- AntRunnerLib.dll
public class RunStepResponse : BaseResponse, IEquatable<ObjectBaseResponse>, IEquatable<BaseResponse>, IOpenAiModels.IId, IOpenAiModels.ICreatedAt, IEquatable<RunStepResponse>
- Inheritance
-
System.
Object RunStep Response
- Implements
-
System.
IEquatable <ObjectBase >Response System.IEquatable <BaseResponse >System.IEquatable <RunStep >Response
- Inherited Members
-
System.
Object. Equals(System. Object) System.Object. Equals(System. Object, System. Object) System.Object. Get Hash Code() System.Object. Get Type() System.Object. Memberwise Clone() System.Object. Reference Equals(System. Object, System. Object) System.Object. To String()
Properties
AssistantId
The ID of the assistant associated with the run step.
Property Value
- System.
String
CancelledAt
The Unix timestamp (in seconds) for when the run step was cancelled.
Property Value
- System.
Nullable <System.Int32 >
CompletedAt
The Unix timestamp (in seconds) for when the run step completed.
Property Value
- System.
Nullable <System.Int32 >
CreatedAt
The Unix timestamp (in seconds) for when the run step was created.
Property Value
- System.
Int32
ExpiredAt
The Unix timestamp (in seconds) for when the run step expired. A step is considered expired if the parent run is expired.
Property Value
- System.
Nullable <System.Int32 >
FailedAt
The Unix timestamp (in seconds) for when the run step failed.
Property Value
- System.
Nullable <System.Int32 >
Id
The identifier of the run step, which can be referenced in API endpoints.
Property Value
- System.
String
LastError
The last error associated with this run step. Will be null
if there are no errors.
Property Value
Metadata
Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long.
Property Value
- System.
Nullable <Dictionary<System.String , System.String >>
RunId
The ID of the run that this run step is a part of.
Property Value
- System.
String
Status
The status of the run step, which can be either in_progress
, cancelled
, failed
, completed
, expired
, or
'incomplete'.
Property Value
- System.
String
StepDetails
Property Value
ThreadId
The ID of the thread that was run.
Property Value
- System.
String
Type
The type of run step, which can be either message_creation
or tool_calls
.
Property Value
- System.
String
Usage
Usage statistics related to the run step. This value will be null
while the run step's status is
in_progress
.