CLICKUP_TASK_CREATE_PROMPT = '\n This tool is a wrapper around clickup\'s create_task API, useful when you need to create a CLICKUP task. \n The input to this tool is a dictionary specifying the fields of the CLICKUP task, and will be passed into clickup\'s CLICKUP `create_task` 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 task descriptions and corresponding input examples:\n Task: create a task called "Daily report"\n Example Input: {{"name": "Daily report"}}\n Task: Make an open task called "ClickUp toolkit refactor" with description "Refactor the clickup toolkit to use dataclasses for parsing", with status "open"\n Example Input: {{"name": "ClickUp toolkit refactor", "description": "Refactor the clickup toolkit to use dataclasses for parsing", "status": "Open"}}\n Task: create a task with priority 3 called "New Task Name" with description "New Task Description", with status "open"\n Example Input: {{"name": "New Task Name", "description": "New Task Description", "status": "Open", "priority": 3}}\n Task: Add a task called "Bob\'s task" and assign it to Bob (
user id: 81928627
)\n Example Input: {{"name": "Bob\'s task", "description": "Task for Bob", "assignees": [81928627]}}\n '