Unverified Commit 83be93f9 authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #746 from ollama-webui/continue

fix: title
parents 9e7f67aa 2c1184fe
...@@ -708,9 +708,19 @@ ...@@ -708,9 +708,19 @@
const modelTag = $models.filter((m) => m.name === responseMessage.model).at(0); const modelTag = $models.filter((m) => m.name === responseMessage.model).at(0);
if (modelTag?.external) { if (modelTag?.external) {
await sendPromptOpenAI(responseMessage.model, prompt, responseMessage.id, _chatId); await sendPromptOpenAI(
responseMessage.model,
history.messages[responseMessage.parentId].content,
responseMessage.id,
_chatId
);
} else if (modelTag) { } else if (modelTag) {
await sendPromptOllama(responseMessage.model, prompt, responseMessage.id, _chatId); await sendPromptOllama(
responseMessage.model,
history.messages[responseMessage.parentId].content,
responseMessage.id,
_chatId
);
} else { } else {
toast.error(`Model ${model} not found`); toast.error(`Model ${model} not found`);
} }
......
...@@ -709,9 +709,19 @@ ...@@ -709,9 +709,19 @@
const modelTag = $models.filter((m) => m.name === responseMessage.model).at(0); const modelTag = $models.filter((m) => m.name === responseMessage.model).at(0);
if (modelTag?.external) { if (modelTag?.external) {
await sendPromptOpenAI(responseMessage.model, prompt, responseMessage.id, _chatId); await sendPromptOpenAI(
responseMessage.model,
history.messages[responseMessage.parentId].content,
responseMessage.id,
_chatId
);
} else if (modelTag) { } else if (modelTag) {
await sendPromptOllama(responseMessage.model, prompt, responseMessage.id, _chatId); await sendPromptOllama(
responseMessage.model,
history.messages[responseMessage.parentId].content,
responseMessage.id,
_chatId
);
} else { } else {
toast.error(`Model ${model} not found`); toast.error(`Model ${model} not found`);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment