CohereAssistantMessageV2

class oci.generative_ai_inference.models.CohereAssistantMessageV2(**kwargs)

Bases: oci.generative_ai_inference.models.cohere_message_v2.CohereMessageV2

A message that represents a single chat dialog as CHATBOT role.

Attributes

ROLE_ASSISTANT str(object=’’) -> str
ROLE_SYSTEM str(object=’’) -> str
ROLE_TOOL str(object=’’) -> str
ROLE_USER str(object=’’) -> str
citations Gets the citations of this CohereAssistantMessageV2.
content [Required] Gets the content of this CohereMessageV2.
role [Required] Gets the role of this CohereMessageV2.
tool_calls Gets the tool_calls of this CohereAssistantMessageV2.
tool_plan Gets the tool_plan of this CohereAssistantMessageV2.

Methods

__init__(**kwargs) Initializes a new CohereAssistantMessageV2 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.
ROLE_ASSISTANT = 'ASSISTANT'
ROLE_SYSTEM = 'SYSTEM'
ROLE_TOOL = 'TOOL'
ROLE_USER = 'USER'
__init__(**kwargs)

Initializes a new CohereAssistantMessageV2 object with values from keyword arguments. The default value of the role attribute of this class is ASSISTANT and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • role (str) – The value to assign to the role property of this CohereAssistantMessageV2. Allowed values for this property are: “ASSISTANT”, “USER”, “SYSTEM”, “TOOL”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
  • content (list[oci.generative_ai_inference.models.CohereContentV2]) – The value to assign to the content property of this CohereAssistantMessageV2.
  • tool_plan (str) – The value to assign to the tool_plan property of this CohereAssistantMessageV2.
  • tool_calls (list[oci.generative_ai_inference.models.CohereToolCallV2]) – The value to assign to the tool_calls property of this CohereAssistantMessageV2.
  • citations (list[oci.generative_ai_inference.models.CohereCitationV2]) – The value to assign to the citations property of this CohereAssistantMessageV2.
citations

Gets the citations of this CohereAssistantMessageV2. Cohere citations

Returns:The citations of this CohereAssistantMessageV2.
Return type:list[oci.generative_ai_inference.models.CohereCitationV2]
content

[Required] Gets the content of this CohereMessageV2. Contents of the chat message.

Returns:The content of this CohereMessageV2.
Return type:list[oci.generative_ai_inference.models.CohereContentV2]
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.

role

[Required] Gets the role of this CohereMessageV2. To identify who the message is coming from, a role is associated to each message.

Allowed values for this property are: “ASSISTANT”, “USER”, “SYSTEM”, “TOOL”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The role of this CohereMessageV2.
Return type:str
tool_calls

Gets the tool_calls of this CohereAssistantMessageV2. A list of tool calls generated by the model.

Returns:The tool_calls of this CohereAssistantMessageV2.
Return type:list[oci.generative_ai_inference.models.CohereToolCallV2]
tool_plan

Gets the tool_plan of this CohereAssistantMessageV2. A chain-of-thought style reflection and plan that the model generates when working with Tools.

Returns:The tool_plan of this CohereAssistantMessageV2.
Return type:str