Class OpenAITypes.ImageReference
A reference to an image, either by file ID or base64-encoded data.
Inherited Members
Namespace: Glitch9.AIDevKit
Assembly: Glitch9.AIDevKit.dll
Syntax
[JsonObject]
public class OpenAITypes.ImageReference
Properties
| Edit this page View SourceFileId
Optional. File ID for this image.
Declaration
[JsonProperty("file_id")]
public string FileId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ImageUrl
Optional. Base64-encoded image URL.
Declaration
[JsonProperty("image_url")]
public string ImageUrl { get; set; }
Property Value
| Type | Description |
|---|---|
| string |