JIRA_CATCH_ALL_PROMPT = '\n This tool is a wrapper around atlassian-python-api\'s Jira API.\n There are other dedicated tools for fetching all projects, and creating and searching for issues, \n use this tool if you need to perform any other actions allowed by the atlassian-python-api Jira API.\n The input to this tool is a dictionary specifying a function from atlassian-python-api\'s Jira API, \n as well as a list of arguments and dictionary of keyword arguments to pass into the function.\n For example, to get all the users in a group, while increasing the max number of results to 100, you would\n pass in the following dictionary: {{"function": "get_all_users_from_group", "args": ["group"], "kwargs": {{"limit":100}} }}\n or to find out how many projects are in the Jira instance, you would pass in the following string:\n {{"function": "projects"}}\n For more information on the Jira API, refer to https://atlassian-python-api.readthedocs.io/jira.html\n '