From 4860c6dff32bd2f0c19f408ff4529ae9f194294b Mon Sep 17 00:00:00 2001 From: heimoshuiyu Date: Wed, 14 Jun 2023 12:14:57 +0800 Subject: [PATCH] inherit chatStore.model --- src/app.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app.tsx b/src/app.tsx index c5fb556..7246972 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -149,7 +149,8 @@ export function App() { chatStore.apiKey, chatStore.systemMessageContent, chatStore.apiEndpoint, - chatStore.streamMode + chatStore.streamMode, + chatStore.model ) ) ); @@ -229,7 +230,8 @@ export function App() { chatStore.apiKey, chatStore.systemMessageContent, chatStore.apiEndpoint, - chatStore.streamMode + chatStore.streamMode, + chatStore.model ) ); }