Skip to content

Commit 5d00eb0

Browse files
committed
docsUrl: "https://ollama.com",
1 parent 032fae2 commit 5d00eb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/tasks/src/local-apps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ const snippetLlamacpp = (model: ModelData, filepath?: string): LocalAppSnippet[]
129129
const snippetOllama = (model: ModelData, ollamatag?: string): string => {
130130
return `ollama run hf.co/${model.id}${ollamatag ?? "{{OLLAMA_TAG}}"}`;
131131
};
132-
132+
``
133133
const snippetLocalAI = (model: ModelData, filepath?: string): LocalAppSnippet[] => {
134134
const command = (binary: string) =>
135135
["# Load and run the model:", `${binary} huggingface://${model.id}/${filepath ?? "{{GGUF_FILE}}"}`].join("\n");
@@ -371,7 +371,7 @@ export const LOCAL_APPS = {
371371
},
372372
ollama: {
373373
prettyLabel: "Ollama",
374-
docsUrl: "https://github.com/ollama/ollama/tree/main/docs",
374+
docsUrl: "https://ollama.com",
375375
mainTask: "text-generation",
376376
displayOnModelPage: (model) => model.tags.includes("conversational") && isLlamaCppGgufModel(model),
377377
snippet: snippetOllama,

0 commit comments

Comments
 (0)