> ## 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.

# How to set up Visualize This

> How to add the Visualize This Spring Boot starter to an Atoti Java project, including the `pom.xml` dependency, the required LLM configuration prerequisite, and verification that the AI assistant appears in Atoti UI.

<Info>
  ### Atoti Intelligence Essentials

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

This page explains how to add Visualize This to an Atoti Java project.

## Prerequisites

The following requirements must be met before setting up Visualize This:

* Java project
* License with AI flag enabled
* Configured LLM (see [LLM configuration](../llm-set-up/llm-config))
* Maven or Gradle build system

## How to add the backend dependency

The Visualize This Spring Boot starter must be added to the project.

Add the following dependency to `pom.xml`:

```xml theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
<dependency>
  <groupId>com.activeviam.springboot</groupId>
  <artifactId>starter-ai-chat</artifactId>
  <version>${atoti-server.version}</version>
</dependency>
```

## How to verify the setup

After adding the dependency, verify that Visualize This is available.

Follow these steps:

1. Build the project.
2. Start the Atoti application.
3. Open the Atoti UI.
4. Check that the AI assistant appears in the interface.

## Related reading

After setting up Visualize This, the following actions are recommended:

* [Configure Visualize This](./configuration) to provide additional context about cubes
* [Learn how to use Visualize This](../../../../user-guide/chat) in the Atoti UI
