/// import { derive, recipe, UI } from "commontools"; interface ContentPart { type: "text" | "image"; text?: string; image?: string; } interface Message { role: "user" | "assistant"; content: string | ContentPart[]; } interface State { messages: Message[]; } export default recipe("DeriveMapUnionReturn", (state) => { // This derive callback contains a nested map and returns string | null // The callback becomes synthetic during transformation, which previously // caused type inference to fail, resulting in a 'true' schema instead of // the correct union type schema. const latestMessage = derive(state.messages, (messages) => { if (!messages || messages.length === 0) return null; for (let i = messages.length - 1; i >= 0; i--) { const msg = messages[i]!; if (msg.role === "assistant") { // This map call inside the derive callback was the key issue const content = typeof msg.content === "string" ? msg.content : msg.content.map((part) => { if (part.type === "text") return part.text || ""; return ""; }).join(""); return content; } } return null; }); return { [UI]: (
Latest: {latestMessage}
), }; });