toAISdkV5Messages()
将各种输入格式的消息转换为 AI SDK V5(及更高版本)UI 消息格式。此函数接受多种格式的消息(字符串、AI SDK V4/V5 消息、Mastra 数据库消息等),并将它们规范化为适用于 AI SDK V5+ UIMessage 格式的消息,可用于 AI SDK UI 组件,如 useChat()。
🌐 Converts messages from various input formats to AI SDK V5 (and later) UI message format. This function accepts messages in multiple formats (strings, AI SDK V4/V5 messages, Mastra DB messages, etc.) and normalizes them to the AI SDK V5+ UIMessage format, which is suitable for use with AI SDK UI components like useChat().
使用示例Direct link to 使用示例
🌐 Usage example
app/chat/page.tsx
import { toAISdkV5Messages } from "@mastra/ai-sdk/ui";
import { useChat } from "ai/react";
// Stored messages from your database, memory or API
const storedMessages = [
{ id: "1", role: "user", content: "Hello", parts: [{ type: "text", text: "Hello" }] },
{ id: "2", role: "assistant", content: "Hi there!", parts: [{ type: "text", text: "Hi there!" }] }
];
export default function Chat() {
const { messages } = useChat({
initialMessages: toAISdkV5Messages(storedMessages)
});
return (
<div>
{messages.map((message) => (
<div key={message.id}>
{message.role}: {message.parts.map(part =>
part.type === "text" ? part.text : null
)}
</div>
))}
</div>
);
}
参数Direct link to 参数
🌐 Parameters
messages:
MessageListInput
Messages to convert. Can be a string, array of strings, a single message object, or an array of message objects in any supported format.
返回Direct link to 返回
🌐 Returns
返回一个包含 AI SDK V5+ UIMessage 对象的数组,结构如下:
🌐 Returns an array of AI SDK V5+ UIMessage objects with the following structure:
id:
string
Unique message identifier.
role:
'user' | 'assistant' | 'system'
The role of the message sender.
parts:
UIMessagePart[]
Array of UI parts including text, tool results, files, reasoning, sources, and step markers.
metadata?:
Record<string, unknown>
Optional metadata including createdAt, threadId, resourceId, and custom fields.
示例Direct link to 示例
🌐 Examples
转换简单的文本消息Direct link to 转换简单的文本消息
🌐 Converting simple text messages
import { toAISdkV5Messages } from "@mastra/ai-sdk/ui";
const messages = toAISdkV5Messages(["Hello", "How can I help you today?"]);
// Returns array of UIMessage objects with user role
正在使用 Mastra 客户端加载消息Direct link to 正在使用 Mastra 客户端加载消息
🌐 Loading messages with Mastra client
import { MastraClient } from "@mastra/client-js";
import { toAISdkV5Messages } from "@mastra/ai-sdk/ui";
const client = new MastraClient();
const { messages } = await client.listThreadMessages("thread-id", { agentId: "myAgent" });
const uiMessages = toAISdkV5Messages(messages);