> For the complete documentation index, see [llms.txt](https://docs.opsmx.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.opsmx.com/getting-started/release-notes/configuration-changes/config-changes-for-v2026.06.00/config-changes-to-add-opsmx-assistant-nli-in-ssd.md).

# Config Changes to Add OpsMx Assistant (NLI) in SSD

Follow the steps below and do the given configuration changes to add OpsMx-Assistant(NLI) in SSD.

* Add the opsmx-assistant as a service in the namespace that NLI is deployed.
* Update the configuration to support the OpsMx Assistant.
* Once the ssd-ui is loaded, the OpsMx Assistant button will appear at the top-right corner of the homepage, enabled and ready to use.&#x20;

#### Configuration Changes:

1. Add these lines in the **ssd-ui-nginxconf** before /ui

{% code overflow="wrap" %}

```
# Opsmx-assistant — MUST be before /ui
        location ^~ /ui/assistant/ {
          proxy_pass http://opsmx-assistant:8080/;
          proxy_http_version 1.1;
          proxy_set_header Host $host;
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          add_header Access-Control-Allow-Origin $http_origin always;
          add_header Access-Control-Allow-Credentials true always;
          add_header Access-Control-Allow-Methods 'GET, OPTIONS' always;
          add_header Access-Control-Allow-Headers 'Content-Type' always;
        }
```

{% endcode %}

2. Add these lines in **app-config**

{% code overflow="wrap" %}

```
"enableNLI": true,
    "CHAT_NATURAL_LANGUAGE": "ssdservice/v1/nli",
    "GET_NLI_CHAT_HISTORY": "ssdservice/v1/nli/chats/user",
    "GET_NLI_CHAT_MESSAGES": "ssdservice/v1/nli/chat/",
    "chatMfeUrl": "/ui/assistant",
    "showChatHistory": "true"
```

{% endcode %}
