Model reference · open weights

CORe-Pico-4

Available as managed deployment LLMs OpenCOReTechnologies Text gen 1 variants 885 dl/mo

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 byOpenCOReTechnologies
TypeLanguage models
TaskText gen
Parameters (lead)1.7B
Context40k tokens
Runs withtransformers
Released2026-09-16
Popularity885 downloads / month
LicenceOpen weights

About

What CORe-Pico-4 is

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.

Read the full model card

AN IMPORTANT NOTE

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.

Forcing the AI to always reason

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.

Recommended Settings for Coding / Agentic Performance

SettingRecommended ValueNotes
Temperature0.2 - 0.3Lowers creativity; keeps logic predictable and precise.
Min P Sampling0.05Dynamic filter; eliminates chaotic, low-probability tokens.
Top P SamplingDisabledStacking Top P with Min P causes severe formatting glitches.
Top K Sampling0 (Disabled)Avoids artificial truncation of logical choices.
Thinking ToggleEither/orThinking ON can enable reasoning where the model deems it nessecary.
Option B: Raw Speed & Baseline Common Sense (Everyday Q&A)

Use this profile for standard conversational tasks, fast generation.

  • Thinking Toggle: Either/or
  • Temperature: 0.5 - 0.7
  • Min P: 0.05
  • Top P: Disabled (or 1.0)
  • Top K: 0 (Disabled)

What it does well

  • Identity questions. "Who are you", "what model are you", "who made you" all get correct, consistent answers.
  • Reasoning. /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.
  • Chat and short answers. Direct questions get direct replies ("What is the capital of France?" gives "Paris").
  • Tool calling. Emits parseable `` JSON blocks when tools are provided.

Quick start

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?"))

What it says about itself

You askIt 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."

Files

FileSizeUse
model.safetensors3.4 GBbf16 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.

Details

ArchitectureTransformer decoder, 28 layers, grouped-query attention
Parameters1.72B
Context length40,960 tokens
Tokenizer151,936-token BPE with native chat template
LicenseApache-2.0

Notes

  • English-first, other languages second.
  • Loads with plain transformers, no custom code required.
  • Above 8k context, the KV cache grows large enough to noticeably increase memory usage and slow generation on edge hardware. We are actively working on this.
  • Thinking may just be a waste of a few tokens. If you never experience real CoT in your tests, turn it off, it is doing nothing.

License and attribution

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

Call it like any OpenAI endpoint

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.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms