CLICKUP_GET_TASK_ATTRIBUTE_PROMPT = '\n This tool is a wrapper around clickup\'s API, \n useful when you need to get a specific attribute from a task. Given the task id and desired attribute create a request similar to the following dictionary:\n payload = {{"task_id": "<
task_id_to_update
>", "attribute_name": "<attribute_name_to_update>"}}\n\n Here are some example queries their corresponding payloads:\n Get the name of task 23jn23kjn -> {{"task_id": "23jn23kjn", "attribute_name": "name"}}\n What is the priority of task 86a0t44tq? -> {{"task_id": "86a0t44tq", "attribute_name": "priority"}}\n Output the description of task sdc9ds9jc -> {{"task_id": "sdc9ds9jc", "attribute_name": "description"}}\n Who is assigned to task bgjfnbfg0 -> {{"task_id": "bgjfnbfg0", "attribute_name": "assignee"}}\n Which is the status of task kjnsdcjc? -> {{"task_id": "kjnsdcjc", "attribute_name": "description"}}\n How long is the time estimate of task sjncsd999? -> {{"task_id": "sjncsd999", "attribute_name": "time_estimate"}}\n Is task jnsd98sd archived?-> {{"task_id": "jnsd98sd", "attribute_name": "archive"}}\n '