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

# Configure Collate for BYOC

> Configure your Collate deployment to use the Collate AI Proxy after the Helm installation.

# Configure Collate

After deploying the Collate AI Proxy, you must configure your Collate instance.

* If you deployed Collate using a custom Helm chart, use the environment variable configuration below.
* If you deployed Collate using the Collate Helm chart, use the `collate.aiProxy.enabled` setting instead.

## Using environment variables

<Tabs>
  <Tab title="AWS">
    ### AWS Bedrock settings

    Add the following environment variables to your Collate deployment and adjust them as needed:

    ```yaml theme={null}
    - name: EMBEDDING_PROVIDER
      value: bedrock
    - name: AI_PLATFORM_HOST
      value: caip-collate-ai-proxy
    - name: AWS_DEFAULT_REGION
      value: "<AWS_REGION_CODE>"
    - name: BEDROCK_AWS_IAM_AUTH_ENABLED
      value: "true"
    ```
  </Tab>

  <Tab title="Azure">
    ### Azure OpenAI settings

    Add the following environment variables to your Collate deployment values and adjust them as needed:

    ```yaml theme={null}
    extraEnvs:
      - name: OPENAI_API_KEY
        value: "<AZURE_OPENAI_SEMANTIC_SEARCH_KEY>"
      - name: OPENAI_API_ENDPOINT
        value: "<AZURE_OPENAI_SEMANTIC_SEARCH_ENDPOINT>"
      - name: OPENAI_DEPLOYMENT_NAME
        value: "<AZURE_OPENAI_SEMANTIC_SEARCH_DEPLOYMENT_NAME>"
      - name: OPENAI_API_VERSION
        value: "<AZURE_OPENAI_SEMANTIC_SEARCH_API_VERSION>"
      - name: OPENAI_EMBEDDING_MODEL_ID
        value: "text-embedding-3-small"
    ```
  </Tab>

  <Tab title="GCP">
    ### GCP settings

    Add the following environment variables to your Collate deployment values and adjust them as needed:

    ```yaml theme={null}
    extraEnvs:
      - name: EMBEDDING_PROVIDER
        value: djl
      - name: AI_PLATFORM_HOST
        value: caip-collate-ai-proxy
    ```
  </Tab>
</Tabs>

## Collate Helm chart

If you are using the Collate Helm chart, append the following to your Helm values:

```yaml theme={null}
collate:
  aiProxy:
    enabled: true
```

Then, upgrade your OpenMetadata deployment to apply the new configuration:

## Navigation

<CardGroup cols={2}>
  <Card title="Deployment" href="/how-to-guides/deployment/byoc/kubernetes/collate-ai-proxy/deployment">
    \< Previous
  </Card>

  <Card title="Validation" href="/how-to-guides/deployment/byoc/kubernetes/collate-ai-proxy/validation">
    Next >
  </Card>
</CardGroup>
