| 12345678910111213141516171819202122232425262728 | from typing import Optionalfrom pydantic import BaseModelfrom core.tools.entities.tool_entities import ToolParameterclass ApiToolBundle(BaseModel):    """    This class is used to store the schema information of an api based tool. such as the url, the method, the parameters, etc.    """    # server_url    server_url: str    # method    method: str    # summary    summary: Optional[str] = None    # operation_id    operation_id: str = None    # parameters    parameters: Optional[list[ToolParameter]] = None    # author    author: str    # icon    icon: Optional[str] = None    # openapi operation    openapi: dict
 |