Class TitanEmbeddingRequest
Inherited Members
Namespace: Glitch9.AIDevKit.AmazonAws
Assembly: Glitch9.AIDevKit.Provider.AmazonAws.dll
Syntax
public class TitanEmbeddingRequest : TitanEmbeddingRequestBase
Properties
| Edit this page View SourceDimensions
Optional. The number of dimensions the output embedding should have. The following values are accepted: 1024 (default), 512, 256.
Declaration
[JsonProperty("dimensions")]
public int? Dimensions { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
EmbeddingTypes
Optional. Accepts a list containing "float", "binary", or both. Defaults to float.
Declaration
[JsonProperty("embeddingTypes")]
public List<string> EmbeddingTypes { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> |
Normalize
Optional. Flag indicating whether or not to normalize the output embedding. Defaults to true.
Declaration
[JsonProperty("normalize")]
public bool? Normalize { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |