GGUF quantisations of
arun11karthik/cellsense-fim-7b, a fill-in-the-middle (FIM) code-completion model.
For fully local, no-GPU-required inference, GGUF builds are published at
arun11karthik/cellsense-fim-7b-GGUF.
Ollama can pull and run these directly from the Hugging Face Hub — no manual download or
Modelfile
required. This is the recommended path for running CellSense entirely on your own machine: with Ollama,
no code or context ever leaves your computer.
Install
Ollama, then pull a quantization (this also registers the model so
CellSense can use it):
1pip install jupyterlab-cellsense
2jupyter lab
See the
CellSense repository for full installation
options.
To confirm Ollama is serving the model with the correct FIM format before wiring up CellSense, query it
directly:
1curl http://localhost:11434/api/generate -d '{
2 "model": "hf.co/arun11karthik/cellsense-fim-7b-GGUF:Q5_K_M",
3 "prompt": "<|fim_prefix|>import pandas as pd\ndf = pd.read_csv(\"data.csv\")\n<|fim_suffix|>\ndf.head()\n<|fim_middle|>",
4 "stream": false,
5 "options": { "temperature": 0.0, "num_predict": 128 }
6}'