> For the complete documentation index, see [llms.txt](https://mycroft-ai.gitbook.io/mark-ii/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mycroft-ai.gitbook.io/mark-ii/advanced/customizations.md).

# Customizations

The Mark II uses the standard Mycroft plugin system for Wake Words, Speech-To-Text (STT), and Text-To-Speech (TTS) - meaning you can install any Mycroft compatible plugin for these services.&#x20;

{% hint style="warning" %}
Please note, at this time the Mark II does not include a [Configuration Manager](https://mycroft-ai.gitbook.io/docs/using-mycroft-ai/customizations/config-manager) utility. Any changes must be made directly to your [`mycroft.conf`](https://mycroft-ai.gitbook.io/docs/using-mycroft-ai/customizations/mycroft-conf)
{% endhint %}

### STT Plugins

The Mycroft Mark II already includes 3 STT plugins to choose from.

To use a different model, first setup [SSH access](/mark-ii/advanced/ssh-access.md) and edit the Mycroft configuration file at:

```shell
/home/mycroft/.config/mycroft/mycroft.conf
```

After modifying the STT configuration you must restart the Audio Service for changes to take effect:

```shell
sudo systemctl restart dinkum-audio
```

#### Mycroft STT

This is the default cloud based STT service provided by the Mycroft backend. Your Mark II comes pre-configured to use this option, however if you have changed this, you can revert the configuration by using:

```json
{
  "stt": {
    "module": "mycroft"
  }
}
```

Currently the "Mycroft STT" service is a proxy for Google Cloud STT as it is the most accurate STT option at this time. Any STT request made to this service is routed through Mycroft's servers to provide additional anonymity. By doing this, we prevent the upstream service from profiling individuals as they cannot see if one device is making 30,000 requests, or if 30,000 devices are making one request each. We have also explicitly disabled data retention by Google for any of these requests.

Despite these protections, we are working to provide an alternative cloud service that does not rely on Google or other services that we do not deem to be privacy-respecting.

We are also working to provide the best on device STT options possible. Currently this consists of two plugins:

#### Coqui STT

A completely local option utilizing the [Coqui STT deep learning toolkit](https://github.com/coqui-ai/STT#readme).&#x20;

```json
{
  "stt": {
    "module": "coqui_stt_plug"
  }
}
```

Vosk

A completely local option utilizing the [Vosk Speech Recognition Toolkit](https://alphacephei.com/vosk/).

```json
{
  "stt": {
    "module": "vosk_stt_plug"
  }
}
```

### TTS Plugins

By default the Mark II comes with the Mimic 3 TTS plugin pre-installed.

The default configuration is currently:

```json
{
  "tts": {
    "module": "mimic3_tts_plug",
    "mimic3_tts_plug": {
      "voice": "en_UK/apope_low",
      "preloaded_cache": "/opt/mycroft/preloaded_cache/Mimic3"
    }
  }
}
```

The voice model, speaker, speaking rate, variability and other configuration options may be set here. See the Mimic 3 TTS Plugin documentation for more detail:

{% embed url="<https://mycroft-ai.gitbook.io/docs/mycroft-technologies/mimic-tts/mimic-3#plugin-configuration-options>" %}
Mimic 3 TTS Plugin configuration options
{% endembed %}

After modifying the TTS configuration you must restart the Voice Service for changes to take effect:

```shell
sudo systemctl restart dinkum-voice
```

### Wake Word Plugins

By default the Mark II comes with the [Precise Lite Wake Word Plugin](https://github.com/MycroftAI/plugin-wake-word-precise-lite) pre-installed.&#x20;

This plugin runs Precise models that have been converted to TensorFlow Lite, thereby using significantly lower resources than the traditional Precise models.

The same Precise configuration options are available. For more info see:

{% embed url="<https://mycroft-ai.gitbook.io/docs/using-mycroft-ai/customizations/wake-word#configuring-your-precise-wake-word>" %}

After modifying any Wake Word configuration you must restart the Voice Service for changes to take effect:

```shell
sudo systemctl restart dinkum-voice
```

### Additional Plugins

At this time, we do not have an official list of plugins that have been reviewed by Mycroft. There are a number available on PyPI, however these should be used at your own risk.

To create your own plugins, or find more information on configuring 3rd party plugins - see the main Mycroft documentation for each of the plugin services:

{% embed url="<https://mycroft-ai.gitbook.io/docs/mycroft-technologies/mycroft-core/plugins/stt>" %}

{% embed url="<https://mycroft-ai.gitbook.io/docs/mycroft-technologies/mycroft-core/plugins/tts>" %}

{% embed url="<https://mycroft-ai.gitbook.io/docs/mycroft-technologies/mycroft-core/plugins/wake-word-plugins>" %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mycroft-ai.gitbook.io/mark-ii/advanced/customizations.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
