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 9f9e8bf commit 6aa4ee6Copy full SHA for 6aa4ee6
packages/tasks/src/local-apps.ts
@@ -108,7 +108,7 @@ function getQuantTag(filepath?: string): string {
108
const snippetLlamacpp = (model: ModelData, filepath?: string): LocalAppSnippet[] => {
109
const command = (binary: string) => {
110
const snippet = ["# Load and run the model:", `${binary} -hf ${model.id}${getQuantTag(filepath)}`];
111
- return snippet;
+ return snippet.join("\n");
112
};
113
return [
114
{
0 commit comments