How to use from the
Use from the
MLX library
# Make sure mlx-lm is installed
# pip install --upgrade mlx-lm

# Generate text with mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("UnionStreet/Helios-Pika-1.0")

prompt = "Write a story about Einstein"
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
    messages, add_generation_prompt=True
)

text = generate(model, tokenizer, prompt=prompt, verbose=True)

Helios Pika 1.0

Helios Pika 1.0 is a small merged MLX checkpoint from Union Street AI.

It is adapted from Jackrong/Qwen3.5-2B-Claude-4.6-Opus-Reasoning-Distilled with a lightweight Helios post-training pass. It is not trained from scratch. The tune targets Helios identity, concise usefulness, uncertainty calibration, and local-agent behavior.

Pika is the compact proof-of-concept member of the Helios family. It is meant for fast local experimentation, not as the strongest agent model in the line.

Use

python -m mlx_lm generate \
  --model UnionStreet/Helios-Pika-1.0 \
  --prompt "Who are you?"

Notes

  • Format: merged MLX checkpoint
  • Base: Jackrong/Qwen3.5-2B-Claude-4.6-Opus-Reasoning-Distilled
  • Adapter source: Helios-Pika-direct-v05
  • Helios adaptation: Union Street AI

This is an experimental open release. Use judgment before deploying it in systems with real-world side effects.

Downloads last month
13
Safetensors
Model size
2B params
Tensor type
BF16
·
F32
·
MLX
Hardware compatibility
Log In to add your hardware

Quantized

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for UnionStreet/Helios-Pika-1.0