Strategies for managing `N` chats on the server from the UI.
Unanswered
Alexandru posted this in #help-forum
Hey guys. I was having problems implementing this feature where I would render
If you think you can help me, please send me a dm in order for me to quickly walk you through the codebase and explore strategies for this problem.
N chats (it's a playground), each functioning individually. Since I was working with Vercel's ai SDK, I was using this client-server context that manages the chat and should be initialized on the server. In consequence, I cannot figure out how I should go about managing (add, remove, sync etc.) the N chats on the server from the UI.If you think you can help me, please send me a dm in order for me to quickly walk you through the codebase and explore strategies for this problem.
2 Replies
Some code for this chat component:
From what I could see, AI context is necessary initialized on server. So I want to create N instances of this
const ChatServer = async ({ id }: { id: string }) => {
const chat = await getChat(id, userId)
if (!chat) redirect('/')
return (
<AI
key={chat.id}
initialAIState={{
id: chat.id,
model: chat.model,
messages: chat.messages
}}
>
<div
id={`chat-${chat.id}`}
className="flex-shrink-0 md:flex-shrink min-h-[250px] border border-border rounded-md"
>
<Chat id={chat.id} session={session} />
</div>
</AI>
)
}From what I could see, AI context is necessary initialized on server. So I want to create N instances of this
Any ideas? I am struggling with this for a while