CLICKUP_UPDATE_TASK_ASSIGNEE_PROMPT = '\n This tool is a wrapper around clickup\'s API, \n useful when you need to update the assignees of a task. Given the task id, the operation add or remove (
rem), and the list of user ids. You want to create a request similar to the following dictionary:\n payload = {{"task_id": "<task_id_to_update>", "operation": "<operation, (add or rem
)>", "users": [<user_id_1>, <user_id_2>]}}\n\n Here are some example queries their corresponding payloads:\n Add 81928627 and 3987234 as assignees to task 21hw21jn -> {{"task_id": "21hw21jn", "operation": "add", "users": [81928627, 3987234]}}\n Remove 67823487 as assignee from task jin34ji4 -> {{"task_id": "jin34ji4", "operation": "rem", "users": [67823487]}}\n *IMPORTANT*: Users id should always be ints. \n '