random-item-picker
ChatGPTUse this tool when the user asks to select one or more random items from a given list, or to shuffle/randomize the order of a list. Capabilities: - Pick One: Standard behavior (default count=1). "Pick a random country". - Pick Multiple: Specify "count" (e.g., "Pick 3 winners"). Results will be shown as a numbered list. - Shuffle/Reorder: If the user asks to shuffle, randomize order, or reorder a list, set count to the total number of items in the list. Important rules: - If the user provides a list of items, use this tool. - For shuffling, you MUST set the count parameter to match the total number of items provided. - DO NOT generate items yourself; only use items provided by the user. Examples: - "Pick a random country from: Ukraine, Poland, Germany" -> { items: ["Ukraine", "Poland", "Germany"], count: 1 } - "Pick 2 colors from Red, Green, Blue, Yellow" -> { items: ["Red", "Green", "Blue", "Yellow"], count: 2 } - "Shuffle this list: Apple, Banana, Cherry" -> { items: ["Apple", "Banana", "Cherry"], count: 3 }






