CLICKUP_LIST_CREATE_PROMPT = '\n This tool is a wrapper around clickup\'s create_list API, useful when you need to create a CLICKUP list.\n The input to this tool is a dictionary specifying the fields of a clickup list, and will be passed to clickup\'s create_list function.\n Only add fields described by the user.\n Use the following mapping in order to map the user\'s priority to the clickup priority: {{\n Urgent = 1,\n High = 2,\n Normal = 3,\n Low = 4,\n }}. If the user passes in "urgent" replace the priority value as 1.\n\n Here are a few list descriptions and corresponding input examples:\n Description: make a list with name "General List"\n Example Input: {{"name": "General List"}} \n Description: add a new list (
"TODOs"
) with low priority\n Example Input: {{"name": "General List", "priority": 4}}\n Description: create a list with name "List name", content "List content", priority 2, and status "red"\n Example Input: {{"name": "List name", "content": "List content", "priority": 2, "status": "red"}} \n'