# Enable and Configure AI Co-Pilot

The [AI Co-Pilot](https://prismatic.io/docs/embed/workflow-builder/ai-copilot.md) allows your customers to build workflows through natural language.

If you want to enable the AI Co-Pilot for your customers programmatically, issue an [`updateCustomer`](https://prismatic.io/docs/api/schema/mutations.md#updatecustomer) mutation with the `allowWorkflowCopilot` field set to `true`.

Enable AI Co-Pilot for a customer

```graphql
mutation {
  updateCustomer(
    input: {
      id: "Q3V-YOUR-CUSTOMERS-ID"
      allowEmbeddedDesigner: true
      allowWorkflowCopilot: true
    }
  ) {
    customer {
      id
    }
    errors {
      field
      messages
    }
  }
}

```
