Class ContainerFile
Inherited Members
Namespace: Glitch9.AIDevKit.OpenAI
Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
Syntax
public class ContainerFile
Properties
| Edit this page View SourceBytes
Required. Size of the file in bytes.
Declaration
[JsonProperty("bytes")]
public int Bytes { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
ContainerId
Required. The container this file belongs to.
Declaration
[JsonProperty("container_id")]
public string ContainerId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
CreatedAt
Required. Unix timestamp (in seconds) when the file was created.
Declaration
[JsonProperty("created_at")]
public int CreatedAt { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Id
Required. Unique identifier for the file.
Declaration
[JsonProperty("id")]
public string Id { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ObjectType
Required. The type of this object (container.file).
Declaration
[JsonProperty("object")]
public string ObjectType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Path
Required. Path of the file in the container.
Declaration
[JsonProperty("path")]
public string Path { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Source
Required. Source of the file (e.g., user, assistant).
Declaration
[JsonProperty("source")]
public string Source { get; set; }
Property Value
| Type | Description |
|---|---|
| string |