2026-02-17 12:32:30 -05:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export enum LlmRole {
|
|
|
|
|
MAIN = 'main',
|
|
|
|
|
SUBAGENT = 'subagent',
|
|
|
|
|
UTILITY_TOOL = 'utility_tool',
|
|
|
|
|
UTILITY_COMPRESSOR = 'utility_compressor',
|
|
|
|
|
UTILITY_SUMMARIZER = 'utility_summarizer',
|
|
|
|
|
UTILITY_ROUTER = 'utility_router',
|
|
|
|
|
UTILITY_LOOP_DETECTOR = 'utility_loop_detector',
|
|
|
|
|
UTILITY_NEXT_SPEAKER = 'utility_next_speaker',
|
|
|
|
|
UTILITY_EDIT_CORRECTOR = 'utility_edit_corrector',
|
|
|
|
|
UTILITY_AUTOCOMPLETE = 'utility_autocomplete',
|
2026-02-17 14:59:33 -08:00
|
|
|
UTILITY_FAST_ACK_HELPER = 'utility_fast_ack_helper',
|
2026-02-17 12:32:30 -05:00
|
|
|
}
|