langchain_community.agent_toolkits.cogniswitch.toolkit.CogniswitchToolkit¶

class langchain_community.agent_toolkits.cogniswitch.toolkit.CogniswitchToolkit[source]¶

Bases: BaseToolkit

Toolkit for CogniSwitch.

Use the toolkit to get all the tools present in the Cogniswitch and use them to interact with your knowledge.

Parameters
  • cs_token – str. The Cogniswitch token.

  • OAI_token – str. The OpenAI API token.

  • apiKey – str. The Cogniswitch OAuth token.

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 OAI_token: str [Required]¶
param apiKey: str [Required]¶
param cs_token: str [Required]¶
get_tools() List[BaseTool][source]¶

Get the tools in the toolkit.

Return type

List[BaseTool]

Examples using CogniswitchToolkit¶