Interface GenerationConfigRoutingConfigAutoRoutingMode

The configuration for automated routing. When automated routing is specified, the routing will be determined by the pretrained routing model and customer provided model routing preference. This data type is not supported in Gemini API.

interface GenerationConfigRoutingConfigAutoRoutingMode {
    modelRoutingPreference?:
        | "PRIORITIZE_QUALITY"
        | "BALANCED"
        | "PRIORITIZE_COST"
        | "UNKNOWN";
}

Properties

modelRoutingPreference?:
    | "PRIORITIZE_QUALITY"
    | "BALANCED"
    | "PRIORITIZE_COST"
    | "UNKNOWN"

The model routing preference.