> ## Documentation Index
> Fetch the complete documentation index at: https://docs.slai.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Secrets Management

> Slai includes a secrets manager that allows you to use secrets across your different projects.

### Adding a new secret

Secrets are managed in the **Settings** page, under **Secrets**. To create a new secret, click **Create new secret.** You'll be prompted to enter a name and value.

<img src="https://mintcdn.com/slai-docs/x8Ejwqb1sXwT0acS/img/secrets_manager.png?fit=max&auto=format&n=x8Ejwqb1sXwT0acS&q=85&s=b077f9441649793dc170ade2d3ddf434" alt="" width="2878" height="796" data-path="img/secrets_manager.png" />

Add your secret variables using the Secrets Manager

### Using secrets inside your projects

You can access secrets inside your projects through the `os.environ()` object:

```python theme={null}
very_secret_key = os.environ['SLAI_VERY_SECRET_KEY']
```
