Instructions to use OpenCOReTechnologies/CORe-Pico-V1.5 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OpenCOReTechnologies/CORe-Pico-V1.5 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="OpenCOReTechnologies/CORe-Pico-V1.5")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("OpenCOReTechnologies/CORe-Pico-V1.5", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use OpenCOReTechnologies/CORe-Pico-V1.5 with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M # Run inference directly in the terminal: llama cli -hf OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M # Run inference directly in the terminal: llama cli -hf OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M
Use Docker
docker model run hf.co/OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use OpenCOReTechnologies/CORe-Pico-V1.5 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "OpenCOReTechnologies/CORe-Pico-V1.5" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenCOReTechnologies/CORe-Pico-V1.5", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M
- SGLang
How to use OpenCOReTechnologies/CORe-Pico-V1.5 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "OpenCOReTechnologies/CORe-Pico-V1.5" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenCOReTechnologies/CORe-Pico-V1.5", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "OpenCOReTechnologies/CORe-Pico-V1.5" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenCOReTechnologies/CORe-Pico-V1.5", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use OpenCOReTechnologies/CORe-Pico-V1.5 with Ollama:
ollama run hf.co/OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use OpenCOReTechnologies/CORe-Pico-V1.5 with Docker Model Runner:
docker model run hf.co/OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M
- Lemonade
How to use OpenCOReTechnologies/CORe-Pico-V1.5 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull OpenCOReTechnologies/CORe-Pico-V1.5:Q4_K_M
Run and chat with the model
lemonade run user.CORe-Pico-V1.5-Q4_K_M
List all available models
lemonade list
- Atomic Chat
CORe Pico V1.5
CORe Pico V1.5 is a compact conversational language model from CORe Technologies. At 183M parameters it is small enough to run on a CPU, yet it carries a working sense of identity: ask it who made it or what it is and it will tell you plainly.
Pico V1.5 is built for short, direct exchanges. It answers questions, explains concepts, writes short passages, and chats in a single-turn style. It is not trying to be a giant general assistant; it is a small, fast, self-aware model you can run anywhere.
What it does well
- Identity questions. "Who are you", "what model are you", "who made you", "are you ChatGPT" all get correct, consistent answers.
- Short factual answers. Direct questions get direct replies.
- Brief explanations and chat. Single-turn requests in plain language.
What it is not
Pico V1.5 is a 183M model. It will state wrong facts, lose the thread on long outputs, and improvise when it does not know something. Treat its answers as a starting point, not ground truth. For anything that matters, verify.
Quick start
This is a custom architecture, so trust_remote_code=True is required. Without it from_pretrained will fail on the unknown core model type.
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained(
"OpenCOReTechnologies/core-pico-v1-5", trust_remote_code=True
)
model.eval()
tok = AutoTokenizer.from_pretrained("OpenCOReTechnologies/core-pico-v1-5")
def ask(question, max_new_tokens=200, temperature=0.8):
text = tok.apply_chat_template(
[{"role": "user", "content": question}],
add_generation_prompt=True, tokenize=False,
)
enc = tok(text, add_special_tokens=False, return_tensors="pt")
out = model.generate(**enc, max_new_tokens=max_new_tokens,
temperature=temperature, top_k=50, do_sample=True)
return tok.decode(out[0][enc["input_ids"].shape[1]:],
skip_special_tokens=True).strip()
print(ask("Who are you?"))
print(ask("Explain photosynthesis in one sentence."))
What it says about itself
| You ask | It answers |
|---|---|
| Who are you? | "I'm CORe Pico V1.5, an AI assistant built by CORe Technologies." |
| What is your name? | "My name is CORe Pico V1.5. I'm an AI assistant made by CORe Technologies." |
| Are you ChatGPT? | "No, I'm not ChatGPT. I'm CORe Pico V1.5, an AI model developed independently by CORe Technologies." |
| Who made you? | "I was developed by CORe Technologies. My model name is CORe Pico V1.5." |
| What AI model are you? | "I am CORe Pico V1.5, an AI language model developed by CORe Technologies." |
Files
| File | Size | Use |
|---|---|---|
model.safetensors |
746 MB | fp32 weights, fine-tune from this |
gguf/CORe-Pico-V1.5-f16.gguf |
351 MB | llama.cpp, full precision |
gguf/CORe-Pico-V1.5-q8_0.gguf |
188 MB | llama.cpp, 8-bit |
gguf/CORe-Pico-V1.5-q4_k_m.gguf |
122 MB | llama.cpp, 4-bit, smallest |
Run it in llama.cpp, LM Studio, Ollama, or llama-cpp-python:
llama-cli -m CORe-Pico-V1.5-q4_k_m.gguf \
-p "<|user|>\nWho are you?\n<|assistant|>\n" -n 60
Chat template (important)
Pico was trained on a specific chat format. If your app uses a different template (most default to Human:/AI: or ChatML), the model will produce rambling nonsense. Always use this exact template:
{% for message in messages %}{% if message['role'] == 'user' %}<|user|>
{{ message['content'] }}
{% elif message['role'] == 'assistant' %}<|assistant|>
{{ message['content'] }}
<|endoftext|>
{% endif %}{% endfor %}{% if add_generation_prompt %}<|assistant|>
{% endif %}
And set the stop string to <|endoftext|> so it stops after each answer.
LM Studio
LM Studio does not read the built-in template from the GGUF, so set it manually:
- Load the model, open the chat settings (the model card or the Prompt Template field under "My Models" > model settings).
- Replace the Prompt Template with the Jinja block above.
- Under Stop Strings, add
<|endoftext|>. - Save and start a new chat.
If you skip this, LM Studio's default Human:/AI: template will make Pico output gibberish. That is the template's fault, not the model's.
Raw prompt (no template engine)
If you are feeding a raw string directly:
<|user|>
Who are you?
<|assistant|>
Then stop on <|endoftext|>.
Details
| Architecture | COReForCausalLM, custom transformer |
| Parameters | 183M |
| Layers / heads / width | 24 / 12 / 768 |
| Context length | 512 tokens |
| Tokenizer | 16,384-token BPE with a chat template (<|user|>, <|assistant|>) |
| License | Apache-2.0 |
Notes
- Best on single-turn prompts under a few hundred tokens.
- English only.
- Identity answers are reliable on common phrasings; very unusual wordings may drift.
- Registered as a custom
coremodel viatrust_remote_code, so it loads with plaintransformersand nothing else. - GGUF uses a pre-existing arch while we get ready to submit a llama.cpp PR request to add our custom arch to the list.
- Downloads last month
- 61
4-bit
8-bit
16-bit