# Configure Amber Vault

## Add the necessary keys to your amber configuration.

Fluent's transparent security feature looks for keys in the amber configuration named AMBER\_. Any entries in the flow's configuration during runtime will be replaced with the values from the amber vault.

{% code title=" amber encryption cmd" overflow="wrap" %}

```bash
amber encrypt AMBER_FLUENT_OPENAI_API_KEY_01 sk-tdfL2lwUJzFdTHVcwOitT3FlbkFJ7AEgQJCnGF4db3jvlvAO
```

{% endcode %}

Depending on the chatflows you want to run will depend on the API keys necessary to add to amber. The following is a table of keys that are configured with the config.json file.   You only need to include keys for the flows you want to run.

The following table lists all the current keys in the config.json file, a url where to get an API key from the service, and the command to run in your terminal.

## AMBER FLUENT ENVIRONMENT KEYS

<table data-card-size="large" data-view="cards" data-full-width="true"><thead><tr><th>Variable Name</th><th>API Key URL</th><th>Amber Command</th></tr></thead><tbody><tr><td><code>AMBER_FLUENT_SESSION_ID_01</code></td><td></td><td><code>amber encrypt AMBER_FLUENT_SESSION_ID_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_ANOTHERWEBSERVICE_NJF</code></td><td></td><td><code>amber encrypt AMBER_ANOTHERWEBSERVICE_NJF &#x3C;content></code></td></tr><tr><td><code>AMBER_LOCAL_FLUENT_DEFAULT_KEY</code></td><td></td><td><code>amber encrypt AMBER_LOCAL_FLUENT_DEFAULT_KEY &#x3C;content></code></td></tr><tr><td><code>AMBER_REPO_CLOUD_FLUENT_DEMO_KEY</code></td><td></td><td><code>amber encrypt AMBER_REPO_CLOUD_FLUENT_DEMO_KEY &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_ANTHROPIC_KEY_01</code></td><td><a href="https://console.anthropic.com/settings/keys">Anthropic</a></td><td><code>amber encrypt AMBER_FLUENT_ANTHROPIC_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_GROQ_API_KEY_01</code></td><td><a href="https://console.groq.com/keys">GroqLPU</a></td><td><code>amber encrypt AMBER_FLUENT_GROQ_API_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_MISTRAL_KEY_01</code></td><td><a href="https://console.mistral.ai/api-keys/">Mistral</a></td><td><code>amber encrypt AMBER_FLUENT_MISTRAL_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_OPENAI_API_KEY_01</code></td><td><a href="https://platform.openai.com/api-keys">OpenAI</a></td><td><code>amber encrypt AMBER_FLUENT_OPENAI_API_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_PERPLEXITY_API_KEY_01</code></td><td><a href="https://www.perplexity.ai/settings/api">Perplexity</a></td><td><code>amber encrypt AMBER_FLUENT_PERPLEXITY_API_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_GEMINI_API_KEY_01</code></td><td><a href="https://ai.google.dev/">Gemini</a></td><td><code>amber encrypt AMBER_FLUENT_GEMINI_API_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_COHERE_API_KEY_01</code></td><td><a href="https://dashboard.cohere.com/api-keys">Cohere</a></td><td><code>amber encrypt AMBER_FLUENT_COHERE_API_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_HUGGINGFACE_API_KEY_01</code></td><td><a href="https://huggingface.co/settings/tokens">HuggingFace</a></td><td><code>amber encrypt AMBER_FLUENT_HUGGINGFACE_API_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_REPLICATE_API_KEY_01</code></td><td><a href="https://replicate.com/account/api-tokens">Replicate</a></td><td><code>amber encrypt AMBER_FLUENT_REPLICATE_API_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_PINECONE_API_KEY_01</code></td><td><a href="https://app.pinecone.io/...">Pinecone</a></td><td><code>amber encrypt AMBER_FLUENT_PINECONE_API_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_SEARCHAPI_KEY_ID_01</code></td><td><a href="https://www.searchapi.io/">SearchAPI</a></td><td><code>amber encrypt AMBER_FLUENT_SEARCHAPI_KEY_ID_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_SERPAPI_KEY_01</code></td><td><a href="https://serpapi.com/manage-api-key">SerpAPI</a></td><td><code>amber encrypt AMBER_FLUENT_SERPAPI_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_ZEP_MEMORY_KEY_01</code></td><td><a href="https://app.getzep.com/projects/">ZepMemory</a></td><td><code>amber encrypt AMBER_FLUENT_ZEP_MEMORY_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_LEONARDO_AI_KINO_XL_MODEL_ID</code></td><td></td><td><code>amber encrypt AMBER_LEONARDO_AI_KINO_XL_MODEL_ID &#x3C;content></code></td></tr><tr><td><code>AMBER_MAKE_LEONARDO_IMAGE_POST</code></td><td></td><td><code>amber encrypt AMBER_MAKE_LEONARDO_IMAGE_POST &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_LANGSMITH_KEY_01</code></td><td><a href="https://smith.langchain.com/">LangSmith</a></td><td><code>amber encrypt AMBER_FLUENT_LANGSMITH_KEY_01 &#x3C;content></code></td></tr><tr><td><code>AMBER_FLUENT_GITHUB_PAT_KEY_01</code></td><td><a href="https://github.com/settings/tokens">Github PAT</a></td><td><code>amber encrypt AMBER_FLUENT_GITHUB_PAT_KEY_01 &#x3C;content></code></td></tr></tbody></table>
