From c2ee0c9df68100d8ff3c669451f2bb5cb74402e2 Mon Sep 17 00:00:00 2001 From: eastriver Date: Tue, 30 Jan 2024 06:14:57 +0900 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 00f6ef7..11984d0 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ import LLM class Bot: LLM { convenience init() { - let url = Bundle.main.url(forResource: "openhermes-2.5-mistral-7b.Q3_4_M.gguf)", withExtension: "gguf")! + let url = Bundle.main.url(forResource: "openhermes-2.5-mistral-7b.Q4_K_M.gguf)", withExtension: "gguf")! let systemPrompt = "You are a sentient AI with emotions." self.init(from: url, template: .chatML(systemPrompt)) }