For the complete documentation index, see llms.txt. This page is also available as Markdown.
Argument.type
Returns the type of the argument.
property type: Type
Query Example
from glider import*defquery(): functions =Functions().with_arg_count(2).exec(100)for f in functions:for arg in f.arguments().list():print(f"Argument type: {arg.get_variable().type}")return[]