# Hoe kan ik "ai\_embeddings\_semantic\_quick\_search\_enabled" uitschakelen nu deze verborgen is?

**URL:** https://meta.discourse.org/t/how-can-i-disable-ai-embeddings-semantic-quick-search-enabled-now-it-s-hidden/318820
**Category:** Support
**Tags:** ai, ai-search
**Created:** [28 juli 2024 om 01:11 UTC](https://meta.discourse.org/t/how-can-i-disable-ai-embeddings-semantic-quick-search-enabled-now-it-s-hidden/318820 "2024-07-28T01:11:35Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [28 juli 2024 om 05:40 UTC](https://meta.discourse.org/t/how-can-i-disable-ai-embeddings-semantic-quick-search-enabled-now-it-s-hidden/318820/2 "2024-07-28T05:40:58Z")

</div>

Hello 👋 Hidden site settings are accessible from rails console.

> [@Using Hidden Site Settings](https://meta.discourse.org/t/enable-hidden-site-settings/308773):
>
> bookmark This is a #how-to guide about Hidden Site Settings, how to enable them, and why you might want to adjust them. person_raising_hand Required user level: Administrator warning Important: Console access is required for some steps. In Discourse, hidden site settings refer to configuration options that are not readily visible or accessible through the standard admin dashboard interface. These settings are part of the backend configuration that can control various advanced or potent…

> [@Using Hidden Site Settings](https://meta.discourse.org/t/using-hidden-site-settings/308773/1):
>
> ### Option 1: Rails Console
> 
> To modify hidden site settings, you typically need to use the Rails console, a command line tool that allows you to interact directly with the backend of your Discourse installation. To adjust settings via the rails console you can follow these steps:
> 
> 1. **Access the Rails Console** :
> 
> ```plaintext
> cd /var/discourse
> ./launcher enter app
> rails c
> 
> ```
> 
> 1. **Change a Setting** :
> 
> ```plaintext
> SiteSetting.your_setting_name = new_value
> 
> ```
> 
> Replace `your_setting_name` with the name of the setting you want to modify, and `new_value` with the value you want to set.  
> 3. **Exit the Console** :
> 
> ```plaintext
> exit
> 
> ```

So to disable this setting you can do on the 2. point:

```plaintext
SiteSetting.ai_embeddings_semantic_quick_search_enabled = false

```

---

_[View the full topic](https://meta.discourse.org/t/how-can-i-disable-ai-embeddings-semantic-quick-search-enabled-now-it-s-hidden/318820)._
