ai
Version:
AI SDK by Vercel - The AI Toolkit for TypeScript and JavaScript
31 lines (18 loc) • 496 B
text/mdx
title: generateId
description: Generate a unique identifier (API Reference)
# `generateId()`
Generates a unique identifier.
This is the same id generator used by the AI SDK.
```ts
import { generateId } from 'ai';
const id = generateId();
```
## Import
<Snippet text={`import { generateId } from "ai"`} prompt={false} />
## API Signature
### Returns
A string representing the generated ID.
## See also
- [`createIdGenerator()`](/docs/reference/ai-sdk-core/create-id-generator)