For the complete documentation index, see llms.txt. This page is also available as Markdown.
Callable.signature()
Returns the function's or modifier's signature.
signature() → str
Example
from glider import*defquery(): functions =Functions().exec(3,3)for function in functions:# Aggregate the signature of each function along with their nameprint(f"function name {function.name} | signature {function.signature()}")return functions