CustomGenAiModelLlmSelection¶
-
class
oci.generative_ai_agent.models.CustomGenAiModelLlmSelection(**kwargs)¶ Bases:
oci.generative_ai_agent.models.llm_selection.LlmSelectionCustom LLM selection with specific Gen AI model.
Attributes
LLM_SELECTION_TYPE_CUSTOM_GEN_AI_ENDPOINTstr(object=’’) -> str LLM_SELECTION_TYPE_CUSTOM_GEN_AI_MODELstr(object=’’) -> str LLM_SELECTION_TYPE_DEFAULTstr(object=’’) -> str llm_selection_type[Required] Gets the llm_selection_type of this LlmSelection. model_id[Required] Gets the model_id of this CustomGenAiModelLlmSelection. Methods
__init__(**kwargs)Initializes a new CustomGenAiModelLlmSelection object with values from keyword arguments. get_subtype(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
LLM_SELECTION_TYPE_CUSTOM_GEN_AI_ENDPOINT= 'CUSTOM_GEN_AI_ENDPOINT'¶
-
LLM_SELECTION_TYPE_CUSTOM_GEN_AI_MODEL= 'CUSTOM_GEN_AI_MODEL'¶
-
LLM_SELECTION_TYPE_DEFAULT= 'DEFAULT'¶
-
__init__(**kwargs)¶ Initializes a new CustomGenAiModelLlmSelection object with values from keyword arguments. The default value of the
llm_selection_typeattribute of this class isCUSTOM_GEN_AI_MODELand it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - llm_selection_type (str) – The value to assign to the llm_selection_type property of this CustomGenAiModelLlmSelection. Allowed values for this property are: “DEFAULT”, “CUSTOM_GEN_AI_MODEL”, “CUSTOM_GEN_AI_ENDPOINT”
- model_id (str) – The value to assign to the model_id property of this CustomGenAiModelLlmSelection.
-
static
get_subtype(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
llm_selection_type¶ [Required] Gets the llm_selection_type of this LlmSelection. Type of LLM selection
Allowed values for this property are: “DEFAULT”, “CUSTOM_GEN_AI_MODEL”, “CUSTOM_GEN_AI_ENDPOINT”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The llm_selection_type of this LlmSelection. Return type: str
-
model_id¶ [Required] Gets the model_id of this CustomGenAiModelLlmSelection. The OCID of the GenAI model
Returns: The model_id of this CustomGenAiModelLlmSelection. Return type: str
-