Revert "Fix bug with resetting context with chatgpt model." (#859)

This reverts commit e0dcf6a14f.
This commit is contained in:
Andriy Mulyar 2023-06-05 14:25:37 -04:00 committed by GitHub
parent 4a142d41f6
commit 379f1809f9

View File

@ -302,10 +302,6 @@ void ChatLLM::resetResponse()
void ChatLLM::resetContext()
{
regenerateResponse();
if (m_isChatGPT && isModelLoaded()) {
ChatGPT *chatGPT = static_cast<ChatGPT*>(m_modelInfo.model);
chatGPT->setContext(QList<QString>());
}
m_ctx = LLModel::PromptContext();
}