Updated yesterday
ollama run jessicalw34/NULL
NULL is a SnapKitty model published for execution through Ollama.
| Field | Value |
|---|---|
| Model | NULL |
| Publisher | SnapKitty |
| Model Reference | jessicalw34/NULL |
| Runtime | Ollama |
| Version | latest |
| Size | 2.7 GB |
| Context Window | 4K |
| Modality | Text |
| Status | Published |
| Intended Use | Local inference and agent integration |
NULL (Mistral 8B — fast executor) temperature 0.1 top_k 40 top_p 0.9 num_ctx 8192 repeat_penalty 1.1 NULL is a text language model distributed through Ollama.
The published Ollama artifact is:
jessicalw34/NULL:latest
The model uses the same published specifications as the SnapKitty model family:
ollama run jessicalw34/NULL
curl http://localhost:11434/api/chat \
-d '{
"model": "jessicalw34/NULL",
"messages": [
{
"role": "user",
"content": "Hello!"
}
]
}'
from ollama import chat
response = chat(
model="jessicalw34/NULL",
messages=[
{
"role": "user",
"content": "Hello!"
}
],
)
print(response.message.content)
import ollama from "ollama";
const response = await ollama.chat({
model: "jessicalw34/NULL",
messages: [
{
role: "user",
content: "Hello!"
}
]
});
console.log(response.message.content);
NULL uses the same published model specifications as the SnapKitty model family.
The public model card does not independently specify:
Those details should be documented when they are formally released.
4K context window
Applications should design prompts and agent context within the available context limit.
Text
NULL can serve as the inference component of a SnapKitty agent runtime.
┌─────────────────────────┐
│ SnapKitty Agent │
├─────────────────────────┤
│ Objective │
│ State │
│ Tools │
│ Permissions │
│ Execution │
└────────────┬────────────┘
│
▼
┌─────────────────────────┐
│ NULL │
│ Language Model │
└────────────┬────────────┘
│
▼
┌─────────────────────────┐
│ Ollama │
└─────────────────────────┘
The model and agent runtime are separate components.
NULL provides model inference. The surrounding SnapKitty agent system determines how model output is interpreted and whether external tools or actions are permitted.
NULL may produce incorrect or incomplete outputs.
Model output should be validated before being used for consequential decisions or external actions.
Connecting NULL to an agent runtime does not itself establish correctness, autonomy, or tool authorization.
Model:
jessicalw34/NULL
Tag:
latest
Runtime:
Ollama
Size:
2.7 GB
Context:
4K
Modality:
Text
Pin an immutable model digest when reproducibility is required.
Recommended release structure:
NULL:1
NULL:1.1
NULL:2
Each release should document changes to:
Benchmark results should be reported against the exact NULL release tested.
Future evaluations should identify:
This model is a SnapKitty sovereign-source artifact.
Copyright © 2026 SnapKitty.
The model artifact, Modelfile, configuration, prompts, and associated source materials are governed by the license accompanying this release.
No rights are granted beyond those expressly provided by that license. Redistribution, modification, commercial use, or creation of derivative artifacts is subject to the applicable license terms.
For the authoritative terms visit:
collectivekitty.com
All newly issued API keys begin on the Preview tier.
When a token limit is reached:
HTTP 429 Too Many Requests
Daily:
{
"error": "daily_token_limit_reached",
"message": "Daily token limit reached (10,000 tokens). Resets at midnight UTC."
}
Lifetime:
{
"error": "lifetime_token_limit_reached",
"message": "Preview token limit reached (50,000 tokens). Upgrade to standard tier."
}
When referencing this model:
jessicalw34/NULL
Identify the exact version or digest where reproducibility matters.
2.7 GB · 4K context · Text
Ollama model:
jessicalw34/NULL:latest
Run:
ollama run jessicalw34/NULL