### Generate Text with AI SDK Source: https://v4.ai-sdk.dev/docs/introduction Demonstrates how to generate text using the AI SDK with a specified model and prompt. This function is part of the AI SDK Core library and can be used with various supported LLM providers. ```typescript import { generateText } from "ai"; const { text } = await generateText({ model: "anthropic/claude-sonnet-4.5", prompt: "What is love?", }); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.