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

# Unlink Datasets

> Unlink datasets from a specification.

## Example

```python theme={"system"}
galtea.specifications.unlink_datasets(
    specification_id=accuracy_specification.id,
    dataset_ids=[dataset_id],
)
```

## Parameters

<ResponseField name="specification_id" type="string" required>
  The ID of the specification to unlink datasets from.
</ResponseField>

<ResponseField name="dataset_ids" type="list[string]" required>
  List of dataset IDs to unlink from the specification.
</ResponseField>
