Skip to content

Commit 321cb48

Browse files
committed
update comment
1 parent 3fa5005 commit 321cb48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tasks/src/local-apps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ const snippetLlamafileGGUF = (model: ModelData, filepath?: string): LocalAppSnip
108108
const command = (binary: string) =>
109109
[
110110
"# Load and run your model",
111-
`wget https://huggingface.co/${model.id}/resolve/main/`.concat(`${filepath ?? "{{GGUF_FILE}}"}`), // could not figure out how to do it organically
111+
`wget https://huggingface.co/${model.id}/resolve/main/`.concat(`${filepath ?? "{{GGUF_FILE}}"}`), // could not figure out how to do it without concat
112112
`chmod +x ${binary}`,
113113
`${binary} -m ${filepath?? "{{GGUF_FILE}}"} -p 'You are a helpful assistant' `, // will this create a second dropdown ?
114114
].join("\n");

0 commit comments

Comments
 (0)