Class BatchErrorData
Inherited Members
Namespace: Glitch9.AIDevKit.OpenAI
Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
Syntax
public class BatchErrorData
Properties
| Edit this page View SourceCode
An error code identifying the error type.
Declaration
[JsonProperty("code")]
public string Code { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Line
The line number of the input file where the error occurred, if applicable.
Declaration
[JsonProperty("line")]
public int? Line { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Message
A human-readable message providing more details about the error.
Declaration
[JsonProperty("message")]
public string Message { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Param
The name of the parameter that caused the error, if applicable.
Declaration
[JsonProperty("param")]
public string Param { get; set; }
Property Value
| Type | Description |
|---|---|
| string |