Views
No views yet
1# Download the model
2git lfs install
3git clone https://huggingface.co/ianktoo/crisis-agent-v2-gguf
4
5# Run inference
6./llama-cli -m crisis-agent-q4_k_m-20260210.gguf -p "Your prompt here"1# Create Modelfile
2cat > Modelfile << EOF
3FROM crisis-agent-q4_k_m-20260210.gguf
4PARAMETER temperature 0.7
5PARAMETER top_p 0.9
6EOF
7
8# Create model
9ollama create crisis-agent -f Modelfile
10
11# Run
12ollama run crisis-agent