Spaces:
Running
Running
File size: 407 Bytes
a8144f6 2cb6a82 a8144f6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash
# Set environment variables for the ollama server
export OLLAMA_HOST=0.0.0.0
export OLLAMA_ORIGINS=https://projects.blender.org
# Start the Ollama service in the background
ollama serve &
# Wait for the service to initialize
sleep 10
# Create the model using Ollama
ollama run hf.co/mano-wii/llama3.2-1B-tunned-for-blender:Q4_K_M
# Keep the container running indefinitely
tail -f /dev/null
|