Views
No views yet
openai/gpt-oss-20b, rebranded and specialized for:This is not a from-scratch model. Weights descend from OpenAI GPT-OSS 20B (Apache-2.0).
| Field | Value |
|---|---|
| Name | Krono-Distill-20B |
| Base model | openai/gpt-oss-20b |
| Type | Causal LM (derivative / post-trained) |
| License | Apache-2.0 (inherits base terms + attribution) |
| Intended use | General assistant, Italian-first, agent scaffolding |
| Author | MiyaMusashi |
openai/gpt-oss-20b → Krono-Distill-20Bchat_template default model_identity → Krono-Distill (no longer ChatGPT)gpt-oss-20b.1from transformers import pipeline
2
3pipe = pipeline(
4 "text-generation",
5 model="MiyaMusashi/Krono-Distill-20B",
6 torch_dtype="auto",
7 device_map="auto",
8)
9
10messages = [
11 {
12 "role": "system",
13 "content": "Sei Krono-Distill, un assistente forte sull'italiano e sulle capacità agentiche.",
14 },
15 {"role": "user", "content": "Chi sei e cosa sai fare bene?"},
16]
17
18# Prefer the model's chat template when available.
19print(pipe(messages, max_new_tokens=256)[0]["generated_text"])1@misc{krono-distill-20b,
2 title = {Krono-Distill-20B},
3 author = {MiyaMusashi},
4 year = {2026},
5 note = {Derivative of openai/gpt-oss-20b},
6 url = {https://huggingface.co/MiyaMusashi/Krono-Distill-20B}
7}