Table of Contents

Class OpenAIModelBase

Namespace
Glitch9.AIDevKit
public abstract class OpenAIModelBase
Inheritance
object
OpenAIModelBase
Derived

Properties

CreatedAt

The Unix timestamp (in seconds) of when this object was created.

public UnixTime? CreatedAt { get; set; }

Property Value

UnixTime?

Id

public string Id { get; set; }

Property Value

string

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 maximum of 512 characters long.

public Dictionary<string, string> Metadata { get; set; }

Property Value

Dictionary<string, string>

Model

ID of the model.

public string Model { get; set; }

Property Value

string

Object

The object type

public string Object { get; set; }

Property Value

string

Usage

How much tokens were used for the request.

public Usage Usage { get; set; }

Property Value

Usage