Files
wehub-resource-sync e30e75b5d4
Changesets / Create Version PR (push) Has been cancelled
Deploy Shadcn Registry / Deploy Production (push) Has been cancelled
Template Metrics / LOC + Bundle Size (push) Has been cancelled
Code Quality / Oxlint + Oxfmt (push) Has been cancelled
Code Quality / Template Sync (push) Has been cancelled
Code Quality / Build Changed Packages (push) Has been cancelled
Code Quality / Test Changed Packages (push) Has been cancelled
Deploy Expo Example / Deploy Production (push) Has been cancelled
Deploy Ink Example / Deploy Production (push) Has been cancelled
Python Tests / pytest (assistant-stream, 3.10) (push) Has been cancelled
Python Tests / pytest (assistant-stream, 3.12) (push) Has been cancelled
Python Tests / pytest (assistant-ui-sync-server-api, 3.10) (push) Has been cancelled
Python Tests / pytest (assistant-ui-sync-server-api, 3.12) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:40:13 +08:00

55 lines
1.5 KiB
TypeScript

"use client";
import type { ThreadMessageLike } from "@assistant-ui/react";
import type { AppendMessage } from "@assistant-ui/react";
import {
AssistantRuntimeProvider,
useExternalStoreRuntime,
} from "@assistant-ui/react";
import { useState } from "react";
const convertMessage = (message: ThreadMessageLike) => {
return message;
};
export function MyRuntimeProvider({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
const [messages, setMessages] = useState<readonly ThreadMessageLike[]>([]);
const onNew = async (message: AppendMessage) => {
if (message.content.length !== 1 || message.content[0]?.type !== "text")
throw new Error("Only text content is supported");
const userMessage: ThreadMessageLike = {
role: "user",
content: [{ type: "text", text: message.content[0].text }],
};
setMessages((currentMessages) => [...currentMessages, userMessage]);
// normally you would perform an API call here to get the assistant response
await new Promise((resolve) => setTimeout(resolve, 1000));
const assistantMessage: ThreadMessageLike = {
role: "assistant",
content: [{ type: "text", text: "Hello, world!" }],
};
setMessages((currentMessages) => [...currentMessages, assistantMessage]);
};
const runtime = useExternalStoreRuntime<ThreadMessageLike>({
messages,
setMessages,
onNew,
convertMessage,
});
return (
<AssistantRuntimeProvider runtime={runtime}>
{children}
</AssistantRuntimeProvider>
);
}