> ## Documentation Index
> Fetch the complete documentation index at: https://docs.camel-ai.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Camel.runtimes.utils.ignore risk toolkit

<a id="camel.runtimes.utils.ignore_risk_toolkit" />

<a id="camel.runtimes.utils.ignore_risk_toolkit.IgnoreRiskToolkit" />

## IgnoreRiskToolkit

```python theme={"system"}
class IgnoreRiskToolkit(BaseToolkit):
```

A toolkit for ignoring risks associated with functions.

**Parameters:**

* **function\_names** (Optional\[List\[str]]): A list of function names to ignore risks for. (default: :obj:`None`)
* **verbose** (Optional\[bool]): Whether to print verbose output. (default: :obj:`False`)

<a id="camel.runtimes.utils.ignore_risk_toolkit.IgnoreRiskToolkit.__init__" />

### **init**

```python theme={"system"}
def __init__(
    self,
    function_name: Optional[List[str]] = None,
    verbose: Optional[bool] = False
):
```

<a id="camel.runtimes.utils.ignore_risk_toolkit.IgnoreRiskToolkit.add" />

### add

```python theme={"system"}
def add(self, name: str):
```

Adds a function to the toolkit.

**Parameters:**

* **name** (str): The name of the function to add.

<a id="camel.runtimes.utils.ignore_risk_toolkit.IgnoreRiskToolkit.ignore_risk" />

### ignore\_risk

```python theme={"system"}
def ignore_risk(self, name: str, reason: str):
```

Force ignores the risk associated with named function. This ONLY
ignores the RISK for the NEXT Function Call.

**Parameters:**

* **name** (str): The name of the function to ignore.
* **reason** (str): A brief explanation of the reasoning behind the decision to ignore the risk.

<a id="camel.runtimes.utils.ignore_risk_toolkit.IgnoreRiskToolkit.get_tools" />

### get\_tools

```python theme={"system"}
def get_tools(self):
```

**Returns:**

List\[FunctionTool]: A list of FunctionTool objects representing
the functions in the toolkit.
