> For the complete documentation index, see [llms.txt](https://docs.graphlit.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.graphlit.dev/api-guides/use-cases/specifications/specification-delete.md).

# Delete Specification

## User Intent

"How do I delete a specification? Show me specification cleanup."

## Operation

**SDK Method**: `deleteSpecification()`\
**Use Case**: Remove model specification

***

## Code Example (TypeScript)

```typescript
import { Graphlit } from 'graphlit-client';

const graphlit = new Graphlit();

// Delete specification
await graphlit.deleteSpecification('specification-id');

console.log('Specification deleted');
```

***

## Important

**Workflows using this spec** will use default model\
**Conversations using this spec** will use default model\
**Cannot undo** deletion

***
