CohereProvider#

class langchain_community.chat_models.oci_generative_ai.CohereProvider[source]#

Attributes

stop_sequence_key

Methods

__init__()

chat_generation_info(response)

chat_response_to_text(response)

chat_stream_generation_info(event_data)

chat_stream_to_text(event_data)

convert_to_oci_tool(tool)

Convert a BaseTool instance, JSON schema dict, or BaseModel type to a OCI tool.

get_role(message)

is_chat_stream_end(event_data)

messages_to_oci_params(messages, **kwargs)

__init__() None[source]#
Return type:

None

chat_generation_info(response: Any) Dict[str, Any][source]#
Parameters:

response (Any) –

Return type:

Dict[str, Any]

chat_response_to_text(response: Any) str[source]#
Parameters:

response (Any) –

Return type:

str

chat_stream_generation_info(event_data: Dict) Dict[str, Any][source]#
Parameters:

event_data (Dict) –

Return type:

Dict[str, Any]

chat_stream_to_text(event_data: Dict) str[source]#
Parameters:

event_data (Dict) –

Return type:

str

convert_to_oci_tool(tool: Dict[str, Any] | Type[BaseModel] | Callable | BaseTool) Dict[str, Any][source]#

Convert a BaseTool instance, JSON schema dict, or BaseModel type to a OCI tool.

Parameters:

tool (Dict[str, Any] | Type[BaseModel] | Callable | BaseTool) –

Return type:

Dict[str, Any]

get_role(message: BaseMessage) str[source]#
Parameters:

message (BaseMessage) –

Return type:

str

is_chat_stream_end(event_data: Dict) bool[source]#
Parameters:

event_data (Dict) –

Return type:

bool

messages_to_oci_params(messages: Sequence[ChatMessage], **kwargs: Any) Dict[str, Any][source]#
Parameters:
  • messages (Sequence[ChatMessage]) –

  • kwargs (Any) –

Return type:

Dict[str, Any]