FunctionCallingPerformedAction¶
-
class
oci.generative_ai_agent_runtime.models.
FunctionCallingPerformedAction
(**kwargs)¶ Bases:
oci.generative_ai_agent_runtime.models.performed_action.PerformedAction
Represents an action for recording the result of a function call.
Attributes
PERFORMED_ACTION_TYPE_FUNCTION_CALLING_PERFORMED_ACTION
str(object=’’) -> str PERFORMED_ACTION_TYPE_HUMAN_APPROVAL_PERFORMED_ACTION
str(object=’’) -> str action_id
[Required] Gets the action_id of this PerformedAction. function_call_output
[Required] Gets the function_call_output of this FunctionCallingPerformedAction. performed_action_type
[Required] Gets the performed_action_type of this PerformedAction. Methods
__init__
(**kwargs)Initializes a new FunctionCallingPerformedAction 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. -
PERFORMED_ACTION_TYPE_FUNCTION_CALLING_PERFORMED_ACTION
= 'FUNCTION_CALLING_PERFORMED_ACTION'¶
-
PERFORMED_ACTION_TYPE_HUMAN_APPROVAL_PERFORMED_ACTION
= 'HUMAN_APPROVAL_PERFORMED_ACTION'¶
-
__init__
(**kwargs)¶ Initializes a new FunctionCallingPerformedAction object with values from keyword arguments. The default value of the
performed_action_type
attribute of this class isFUNCTION_CALLING_PERFORMED_ACTION
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - action_id (str) – The value to assign to the action_id property of this FunctionCallingPerformedAction.
- performed_action_type (str) – The value to assign to the performed_action_type property of this FunctionCallingPerformedAction. Allowed values for this property are: “HUMAN_APPROVAL_PERFORMED_ACTION”, “FUNCTION_CALLING_PERFORMED_ACTION”
- function_call_output (str) – The value to assign to the function_call_output property of this FunctionCallingPerformedAction.
-
action_id
¶ [Required] Gets the action_id of this PerformedAction. The unique identifier for the action that has been performed.
Returns: The action_id of this PerformedAction. Return type: str
-
function_call_output
¶ [Required] Gets the function_call_output of this FunctionCallingPerformedAction. The result or output of the function call.
Returns: The function_call_output of this FunctionCallingPerformedAction. Return type: str
-
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.
-
performed_action_type
¶ [Required] Gets the performed_action_type of this PerformedAction. Specifies the type of the performed action.
Allowed values for this property are: “HUMAN_APPROVAL_PERFORMED_ACTION”, “FUNCTION_CALLING_PERFORMED_ACTION”
Returns: The performed_action_type of this PerformedAction. Return type: str
-