We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 546ce10 commit 65f4968Copy full SHA for 65f4968
Libraries/LLM/Load.swift
@@ -24,9 +24,9 @@ public func load(
24
25
switch configuration.id {
26
case .id(let id):
27
- // download the model weights and config
+ // download the model weights
28
let repo = Hub.Repo(id: id)
29
- let modelFiles = ["config.json", "*.safetensors"]
+ let modelFiles = ["*.safetensors"]
30
modelDirectory = try await hub.snapshot(
31
from: repo, matching: modelFiles, progressHandler: progressHandler)
32
0 commit comments