Show / Hide Table of Contents

Class ModelTypeInfo

Model information like versions and capabilities

Inheritance
object
ModelTypeInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AilanguageService.Models
Assembly: OCI.DotNetSDK.Ailanguage.dll
Syntax
public class ModelTypeInfo

Properties

Capabilities

Declaration
[Required(ErrorMessage = "Capabilities is required.")]
[JsonProperty(PropertyName = "capabilities")]
public Dictionary<string, Capabilities> Capabilities { get; set; }
Property Value
Type Description
Dictionary<string, Capabilities>

Model information capabilities related to version

Remarks

Required

Versions

Declaration
[JsonProperty(PropertyName = "versions")]
public List<string> Versions { get; set; }
Property Value
Type Description
List<string>

Model versions available for this model type

In this article
Back to top