bug fixed with sending message

This commit is contained in:
Patrick_Pluto 2024-10-01 08:36:08 +02:00
parent df72de3695
commit d306b7832d

View file

@ -183,6 +183,7 @@ const InputOutputBackend: React.FC = () => {
api_key = try_key api_key = try_key
} }
} }
setInputMessage("")
postWorkerRef.current.postMessage({ messages: [...messages, { role: "user", content: inputValue }], ai_model: localStorage.getItem('model'), model_type: type, access_token: accessToken, api_key: api_key }) postWorkerRef.current.postMessage({ messages: [...messages, { role: "user", content: inputValue }], ai_model: localStorage.getItem('model'), model_type: type, access_token: accessToken, api_key: api_key })
startGetWorker() startGetWorker()
} }