mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
893a924b90
Thank you for contributing to LangChain! - [ ] **PR title**: "core: move BaseChatLoader and BaseToolkit from community" - [ ] **PR message**: move BaseChatLoader and BaseToolkit --------- Co-authored-by: Bagatur <baskaryan@gmail.com>
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
from typing import List
|
|
|
|
from langchain_core.tools import BaseToolkit
|
|
|
|
from langchain_community.tools import BaseTool
|
|
from langchain_community.tools.cogniswitch.tool import (
|
|
CogniswitchKnowledgeRequest,
|
|
CogniswitchKnowledgeSourceFile,
|
|
CogniswitchKnowledgeSourceURL,
|
|
CogniswitchKnowledgeStatus,
|
|
)
|
|
|
|
|
|
class CogniswitchToolkit(BaseToolkit):
|
|
"""
|
|
Toolkit for CogniSwitch.
|
|
|
|
Use the toolkit to get all the tools present in the cogniswitch and
|
|
use them to interact with your knowledge
|
|
"""
|
|
|
|
cs_token: str # cogniswitch token
|
|
OAI_token: str # OpenAI API token
|
|
apiKey: str # Cogniswitch OAuth token
|
|
|
|
def get_tools(self) -> List[BaseTool]:
|
|
"""Get the tools in the toolkit."""
|
|
return [
|
|
CogniswitchKnowledgeStatus(
|
|
cs_token=self.cs_token, OAI_token=self.OAI_token, apiKey=self.apiKey
|
|
),
|
|
CogniswitchKnowledgeRequest(
|
|
cs_token=self.cs_token, OAI_token=self.OAI_token, apiKey=self.apiKey
|
|
),
|
|
CogniswitchKnowledgeSourceFile(
|
|
cs_token=self.cs_token, OAI_token=self.OAI_token, apiKey=self.apiKey
|
|
),
|
|
CogniswitchKnowledgeSourceURL(
|
|
cs_token=self.cs_token, OAI_token=self.OAI_token, apiKey=self.apiKey
|
|
),
|
|
]
|