Changes
Page history
Update Ollama
authored
Sep 04, 2025
by
FEDERICO MUNOZ ROJAS
Show whitespace changes
Inline
Side-by-side
md/ollama.md
View page @
f75045ab
...
...
@@ -13,6 +13,7 @@ title: Ollama
Se puede ejecutar Ollama en el cluster por medio de contenedores de _Singularity_. A continuación se muestra un ejemplo de _script_ de cola para ejecutar Ollama:
```
...
...
@@ -38,7 +39,7 @@ singularity instance start --nv $SIF_DIR/ollama.sif ollama.instance
singularity
exec
instance://ollama.instance ollama serve&
curl http://localhost:11434/api/generate
-d
'{
"model": "llama
4
",
"model": "llama
3.2
",
"prompt": "Why is the sky blue?",
"stream": false
}'
...
...
@@ -62,7 +63,7 @@ singularity instance start --nv $SIF_DIR/ollama.sif ollama.instance
singularity exec instance://ollama.instance ollama serve&
curl http://localhost:11434/api/chat -d '{
"model": "llama
4
",
"model": "llama
3.2
",
"messages": [{ "role": "user",
"content": "why is the sky blue?" }],
"stream": false
...
...
...
...