bool
true or false
Usage
function CreateStory(long: bool) -> string {client "openai/gpt-5-mini"prompt #"Write a story that is {{ "10 paragraphs" if long else "1 paragraph" }} long."#}test LongStory {functions [CreateStory]args { long true }}test ShortStory {functions [CreateStory]args { long false }}