def to_gemini_genai_tools()

in aidial_adapter_vertexai/chat/static_tools.py [0:0]


    def to_gemini_genai_tools(self) -> List[GenAITool]:
        ret: List[GenAITool] = []
        for tool in self.functions:
            ret.extend(
                GenAIGoogleSearchTool.parse_gemini_tools(tool)
                or unknown_tool_name(tool)
            )
        return ret