Non -GPT model disable system prompt (#3684)

This commit is contained in:
reece00 2023-12-28 23:52:45 +08:00 committed by Hk-Gosuto
parent 4240771f66
commit 9da32a4785
1 changed files with 3 additions and 1 deletions

View File

@ -476,7 +476,9 @@ export const useChatStore = createPersistStore(
const contextPrompts = session.mask.context.slice();
// system prompts, to get close to OpenAI Web ChatGPT
const shouldInjectSystemPrompts = modelConfig.enableInjectSystemPrompts;
const shouldInjectSystemPrompts =
modelConfig.enableInjectSystemPrompts &&
session.mask.modelConfig.model.startsWith("gpt-");
var systemPrompts: ChatMessage[] = [];
systemPrompts = shouldInjectSystemPrompts