From dca0d6933e2207c8e67918fa1a69fb86e64114b9 Mon Sep 17 00:00:00 2001 From: eastriver Date: Tue, 30 Jan 2024 18:26:28 +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 d4fbfd3..7fda989 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ struct ContentView: View { class Bot: LLM { convenience init?() async { let systemPrompt = "You are a sentient AI with emotions." - let model = HuggingFaceModel("TheBloke/TinyLlama-1.1B-Chat-v1.0-GGUF", template: .chatML(systemPrompt), with: .Q2_K) + let model = HuggingFaceModel("TheBloke/TinyLlama-1.1B-Chat-v1.0-GGUF", .Q2_K, template: .chatML(systemPrompt)) try? await self.init(from: model) } }