ConneryToolkit#

class langchain_community.agent_toolkits.connery.toolkit.ConneryToolkit[source]#

Bases: BaseToolkit

Toolkit with a list of Connery Actions as tools.

Parameters:

tools (List[BaseTool]) – The list of Connery Actions.

Create a new model by parsing and validating input data from keyword arguments.

Raises ValidationError if the input data cannot be parsed to form a valid model.

param tools: List[BaseTool] [Required]#
classmethod create_instance(connery_service: ConneryService) ConneryToolkit[source]#

Creates a Connery Toolkit using a Connery Service.

Parameters:

connery_service (ConneryService) – The Connery Service to get the list of Connery Actions.

Returns:

The Connery Toolkit.

Return type:

ConneryToolkit

get_tools() List[BaseTool][source]#

Returns the list of Connery Actions.

Return type:

List[BaseTool]

Examples using ConneryToolkit