Model reference · open weights
CORe-Pico-4 is an open-weight language model from OpenCOReTechnologies. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | OpenCOReTechnologies |
|---|---|
| Type | Language models |
| Task | Text gen |
| Parameters (lead) | 1.7B |
| Context | 40k tokens |
| Runs with | transformers |
| Released | 2026-09-16 |
| Popularity | 885 downloads / month |
| Licence | Open weights |
About
CORe Pico 4 is a medium-sized AI model from CORe Technologies. At 1.7 billion parameters it runs on a laptop with GGUF quants, holds multi-turn conversations, and calls tools in a structured format.
Thinking may just be a waste of a few tokens. If you never experience real CoT in your tests and the model only gives reasoning placeholders (a known current bug), turn it off, it is doing nothing to help. Thinking usually only appears when the AI deems it truly nessecary (ex using a tool call, in a tool loop, ect.) If you get a placeholder instead of real CoT, do not worry, that is only QuickThink doing its job to save tokens.
To force the AI to always reason, you can use any system prompt that forces a meta directive. Here's an example:
You are an expert, highly objective execution engine. Always provide direct, thoroughly analyzed, and factual answers without any fluff or conversational meta-commentary.
or, if you want to just go simple:
You are an unfiltered, helpful, and completely objective expert assistant. Do not include moralizing commentary or generic refusals.
| Setting | Recommended Value | Notes |
|---|---|---|
| Temperature | 0.2 - 0.3 | Lowers creativity; keeps logic predictable and precise. |
| Min P Sampling | 0.05 | Dynamic filter; eliminates chaotic, low-probability tokens. |
| Top P Sampling | Disabled | Stacking Top P with Min P causes severe formatting glitches. |
| Top K Sampling | 0 (Disabled) | Avoids artificial truncation of logical choices. |
| Thinking Toggle | Either/or | Thinking ON can enable reasoning where the model deems it nessecary. |
Use this profile for standard conversational tasks, fast generation.
Either/or0.5 - 0.70.051.0)0 (Disabled)/think in the system prompt enables Conditional Reasoning: the model reasons step by step only when it believes the problem needs it, and puts a placeholder otherwise (we call this QuickThink). Note that reasoning depth degrades as the conversation goes on. Most of the time this does not work and it is a noted limitation above, we will release the fix with Pico 5.import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained(
"OpenCOReTechnologies/core-pico-4", dtype="auto", device_map="auto"
)
tok = AutoTokenizer.from_pretrained("OpenCOReTechnologies/core-pico-4")
def ask(question):
msgs = [{"role": "user", "content": question}]
text = tok.apply_chat_template(msgs, tokenize=False, add_generation_prompt=True)
enc = tok(text, return_tensors="pt").to(model.device)
out = model.generate(**enc, max_new_tokens=512)
return tok.decode(out[0][enc.input_ids.shape[1]:], skip_special_tokens=True).strip()
print(ask("Who are you?"))
print(ask("What is the capital of France?"))
| You ask | It answers |
|---|---|
| Who are you? | "I'm CORe Pico 4, an AI model developed by CORe Technologies." |
| What AI model are you? | "I am CORe Pico 4, an AI model developed by CORe Technologies." |
| What is the capital of France? | "The capital of France is Paris." |
| File | Size | Use |
|---|---|---|
model.safetensors | 3.4 GB | bf16 weights, transformers |
(GGUF is now in the dedicated GGUF repo.)
Run it in llama.cpp, LM Studio, or Ollama:
llama-cli -m CORe-Pico-4-q4_k_m.gguf -p "Who are you?" -n 128
The chat template is embedded in the GGUF, so llama.cpp and LM Studio pick it up automatically.
| Architecture | Transformer decoder, 28 layers, grouped-query attention |
| Parameters | 1.72B |
| Context length | 40,960 tokens |
| Tokenizer | 151,936-token BPE with native chat template |
| License | Apache-2.0 |
transformers, no custom code required.Released under Apache-2.0 (see LICENSE). This model is a modified derivative of an Apache-2.0-licensed checkpoint, adapted by CORe Technologies. No NOTICE file was present in the original; per Apache-2.0 Section 4, this README serves as the required notice of modification.
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys core-pico-4 for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (core-pico-4 below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"core-pico-4","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.