Views
No views yet
1# Download the GGUF file
2wget https://huggingface.co/devopsforflops/delia-functiongemma-270m-gguf/resolve/main/functiongemma-delia-f16.gguf
3
4# Create Modelfile
5cat > Modelfile << 'MODELFILE'
6FROM ./functiongemma-delia-f16.gguf
7
8TEMPLATE """{{ if .System }}<start_of_turn>developer
9{{ .System }}
10<end_of_turn>
11{{ end }}<start_of_turn>user
12{{ .Prompt }}
13<end_of_turn>
14<start_of_turn>model
15"""
16
17PARAMETER stop <end_of_turn>
18PARAMETER stop <start_of_turn>
19PARAMETER temperature 0.1
20PARAMETER num_ctx 2048
21MODELFILE
22
23# Import to Ollama
24ollama create functiongemma-delia -f Modelfile
25
26# Test it
27ollama run functiongemma-delia "Hello!"| Property | Value |
|---|---|
| Base Model | google/functiongemma-270m-it |
| Architecture | Gemma3 |
| Parameters | 268M |
| Quantization | F16 (full precision) |
| File Size | ~518 MB |
| Context Length | 2048 tokens |
settings.json:1{
2 "model_dispatcher": {
3 "name": "functiongemma-delia",
4 "num_ctx": 2048
5 }
6}