from glider import*defquery(): functions =Functions().exec(100) functions_with_sig = []for function in functions:# Aggregate the signature of each function along with their name functions_with_sig.append({"function": function.name(), "sig": function.signature()})return functions_with_sig