Source code for langchain_community.agent_toolkits.multion.toolkit

"""MultiOn agent."""

from __future__ import annotations

from typing import List

from langchain_core.tools import BaseTool
from langchain_core.tools.base import BaseToolkit

from langchain_community.tools.multion.close_session import MultionCloseSession
from langchain_community.tools.multion.create_session import MultionCreateSession
from langchain_community.tools.multion.update_session import MultionUpdateSession


[docs]class MultionToolkit(BaseToolkit): """Toolkit for interacting with the Browser Agent. **Security Note**: This toolkit contains tools that interact with the user's browser via the multion API which grants an agent access to the user's browser. Please review the documentation for the multion API to understand the security implications of using this toolkit. See https://python.langchain.com/docs/security for more information. """ class Config: arbitrary_types_allowed = True
[docs] def get_tools(self) -> List[BaseTool]: """Get the tools in the toolkit.""" return [MultionCreateSession(), MultionUpdateSession(), MultionCloseSession()]