Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
PyxiLab
/
Ollama
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b0dee4e
Ollama
/
pull-model.sh
PyxiLabs
Create pull-model.sh
e155edc
verified
3 months ago
raw
Copy download link
history
blame
Safe
173 Bytes
#!/bin/sh
# Start Ollama in the background
ollama serve &
# Wait for the server to start
sleep
5
# Pull the model
ollama pull all-minilm
# Stop the background server
kill
%1