From 40465e2e868ba5fdde6e255e03f52a8c61a0080a Mon Sep 17 00:00:00 2001 From: Jason Flax Date: Sun, 10 Nov 2024 18:53:32 -0500 Subject: [PATCH] Fix link in main.swift --- swift/main/main.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swift/main/main.swift b/swift/main/main.swift index 7b11c2257..7c85bee23 100644 --- a/swift/main/main.swift +++ b/swift/main/main.swift @@ -12,7 +12,7 @@ func downloadFile() async throws -> String { } print("Downloading Llama Tools, this may take a while...") // Define the URL - guard let url = URL(string: "https://huggingface.co/bartowski/Llama-3-Groq-8B-Tool-Use-GGUF/resolve/main/Llama-3-Groq-8B-Tool-Use-Q5_K_M.gguf?download=true") else { + guard let url = URL(string: "https://huggingface.co/bartowski/Llama-3-Groq-8B-Tool-Use-GGUF/resolve/main/Llama-3-Groq-8B-Tool-Use-Q8_0.gguf?download=true") else { print("Invalid URL.") throw URLError(.badURL) }