diff --git a/app/ui/app/src/hooks/useChats.ts b/app/ui/app/src/hooks/useChats.ts index 2493e5bee..5aac35285 100644 --- a/app/ui/app/src/hooks/useChats.ts +++ b/app/ui/app/src/hooks/useChats.ts @@ -381,7 +381,7 @@ export const useSendMessage = (chatId: string) => { role: "assistant", content: "", thinking: "", - model: effectiveModel, + model: effectiveModel.model, }), ); lastMessage = newMessages[newMessages.length - 1]; @@ -433,7 +433,7 @@ export const useSendMessage = (chatId: string) => { role: "assistant", content: "", thinking: "", - model: effectiveModel, + model: effectiveModel.model, }), ); lastMessage = newMessages[newMessages.length - 1]; @@ -520,7 +520,7 @@ export const useSendMessage = (chatId: string) => { thinkingTimeStart: lastMessage.thinkingTimeStart || event.thinkingTimeStart, thinkingTimeEnd: event.thinkingTimeEnd, - model: selectedModel, + model: selectedModel.model, }); newMessages[newMessages.length - 1] = updatedMessage; } else { @@ -533,7 +533,7 @@ export const useSendMessage = (chatId: string) => { tool_calls: event.toolCalls, thinkingTimeStart: event.thinkingTimeStart, thinkingTimeEnd: event.thinkingTimeEnd, - model: selectedModel, + model: selectedModel.model, }), ); } @@ -699,7 +699,7 @@ export const useSendMessage = (chatId: string) => { queryClient.setQueryData(["chat", newId], { chat: new Chat({ id: newId, - model: effectiveModel, + model: effectiveModel.model, messages: [ new Message({ role: "user",