# Customization

Configuration files can be found on both `client` and `server` folder. In client the `config.js` file can be found inside the **src** folder and  is responsible for the client side configuration whereas for server its `config.py` in the root directory.

### **Configurable parameters in Client:**

<table><thead><tr><th>Parameter</th><th>Description</th></tr></thead><tbody><tr><td><pre><code>DOCS_URL
</code></pre></td><td>URL link of the documentation.</td></tr><tr><td><pre><code>SERVER_URL
</code></pre></td><td>URL link of the server where the server application is running.</td></tr><tr><td><pre><code><strong>UPLOAD_LIMIT
</strong></code></pre></td><td>Number of images one can upload in Configuration.</td></tr><tr><td><pre><code>OUTLINE_THICKNESS_CONFIG : {
      POLYGON: 2,
      CIRCLE: 2,
      BOUNDING_BOX: 2
    }
</code></pre></td><td>Controls the outline thickness of the tools</td></tr><tr><td><pre><code>SHOW_CLASS_DISTRIBUTION
</code></pre></td><td>Displays annotated class distribution bar chart</td></tr><tr><td><pre><code>SAM_MODEL_ENABLED
</code></pre></td><td>Displays button that allow auto bounding box selection using SAM</td></tr></tbody></table>

### **Configurable parameters in Server:**

<table><thead><tr><th>Parameter</th><th>Description</th></tr></thead><tbody><tr><td><pre><code>MASK_BACKGROUND_COLOR
</code></pre></td><td>Background color used while downloading masked image</td></tr><tr><td><pre><code>SAM_MODEL_ENABLED
</code></pre></td><td>Support auto bounding box selection using SAM</td></tr></tbody></table>


---

# Agent Instructions: 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://annotate-docs.dwaste.live/overview/customization.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.
