Show / Hide Table of Contents

Class ModelRoutingPolicy

The model routing policy for the routing profile. Routing candidates are selected from the allowed models list.

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

Properties

AllowedModels

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

The ordered list of model names the routing candidate is selected from (for example, meta.llama-3-70b-instruct).
The order of entries is preserved. Duplicate entries are not allowed.

In this article
Back to top