@ai-sdk/cohere
Version:
The **[Cohere provider](https://sdk.vercel.ai/providers/ai-sdk-providers/cohere)** for the [AI SDK](https://sdk.vercel.ai/docs) contains language model support for the Cohere API.
36 lines (23 loc) • 873 B
Markdown
//sdk.vercel.ai/providers/ai-sdk-providers/cohere)** for the [AI SDK](https://sdk.vercel.ai/docs) contains language model support for the Cohere API.
The Cohere provider is available in the `@ai-sdk/cohere` module. You can install it with
```bash
npm i @ai-sdk/cohere
```
You can import the default provider instance `cohere` from `@ai-sdk/cohere`:
```ts
import { cohere } from '@ai-sdk/cohere';
```
```ts
import { cohere } from '@ai-sdk/cohere';
import { generateText } from 'ai';
const { text } = await generateText({
model: cohere('command-r-plus'),
prompt: 'Write a vegetarian lasagna recipe for 4 people.',
});
```
Please check out the **[Cohere provider](https://sdk.vercel.ai/providers/ai-sdk-providers/cohere)** for more information.
The **[Cohere provider](https: