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

# Set up a custom disclaimer in Python

> How to customize the Atoti Intelligence AI disclaimer in an Atoti Python project by passing the `atoti.ai.disclaimer` property as a JVM option through `SessionConfig.java_options`.

<Info>
  ### Atoti Intelligence Essentials

  This is part of the Atoti Intelligence Essentials offer.
</Info>

This guide explains how to configure an AI disclaimer for use with Atoti Intelligence in an Atoti Python project.

## Why configure an AI disclaimer?

LLMs can make mistakes. Depending on an organization's compliance requirements, an AI disclaimer may be necessary to inform users when an LLM is involved in a response.

## Configuration approach

The Python SDK does not expose a dedicated disclaimer setting. The disclaimer is the `atoti.ai.disclaimer` property, which you set as a JVM option when starting the session through [`SessionConfig.java_options`](https://docs.activeviam.com/products/atoti/python-sdk/latest/api/atoti.config.session_config.html):

```python theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
import atoti as tt

session = tt.Session.start(
    tt.SessionConfig(
        java_options=["-Datoti.ai.disclaimer=Your custom disclaimer"],
    ),
)
```

Any disclaimer set will be displayed in the UI. If none is defined, the disclaimer defaults to:

<SnippetAiCommonDefaultDisclaimer />

This is what the disclaimer will look like in the UI:

<Frame>
  <img src="https://mintcdn.com/activeviam/J0McnvoVg4x05kNG/atoti-intelligence/6.1/images/disclaimer_example.png?fit=max&auto=format&n=J0McnvoVg4x05kNG&q=85&s=743c63fcc635e446902db24fcec70ac0" alt="Hover over the disclaimer to see it displayed" width="542" height="952" data-path="atoti-intelligence/6.1/images/disclaimer_example.png" />
</Frame>

## Related reading

* [Set up an LLM](../configure-and-start/set-up-an-llm)
