GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

Iambackup/Dolphin-X1-Trinity-Nano-GGUF overview

🐬 Dolphin X1 Trinity Nano Website: https://dphn.ai Twitter: https://x.com/dphnAI Web Chat: https://chat.dphn.ai Meganetwork https://cdn uploads.huggingface.co…

transformersgguftext-generationenesfrdeitptruarhikozhbase_model:arcee-ai/Trinity-Nano-Previewbase_model:quantized:arcee-ai/Trinity-Nano-Previewlicense:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~3.01 GB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
text-generation
Author

Repository Files & Downloads

5 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
dolphin-x1-nano-MXFP4_MOE.ggufGGUFGGUF3.39 GBDownload
dolphin-x1-nano-Q3_K_L.ggufGGUFQ3_K_L3.01 GBDownload
dolphin-x1-nano-Q5_K_M.ggufGGUFQ5_K_M4.08 GBDownload
dolphin-x1-nano-Q6_K.ggufGGUFQ6_K4.70 GBDownload
dolphin-x1-nano-Q8_0.ggufGGUFQ8_06.08 GBDownload

Model Details

Model IDIambackup/Dolphin-X1-Trinity-Nano-GGUF
AuthorIambackup
Pipelinetext-generation
Licenseapache-2.0
Base modelarcee-ai/Trinity-Nano-Preview
Last modified2026-06-26T08:34:25.000Z

Model README

---

license: apache-2.0

base_model:

  • arcee-ai/Trinity-Nano-Preview

pipeline_tag: text-generation

library_name: transformers

language:

  • en
  • es
  • fr
  • de
  • it
  • pt
  • ru
  • ar
  • hi
  • ko
  • zh

---

🐬 Dolphin X1 Trinity Nano

Website: https://dphn.ai

Twitter: https://x.com/dphnAI

Web Chat: https://chat.dphn.ai

!Meganetwork

Overview

Dolphin X1 Trinity Nano directly decensors Arcee AI's Trinity Nano model while maintaining instruction-following capabilities. This model is the first trained entirely using our new RL environments aimed to de-align models and achieves lower refusal rates than other models in its class without compromising performance.

Details on the environment can be found here: https://blog.dphn.ai/dphn-x1-trinity-nano/

Sponsors

Our appreciation for the generous sponsors of Dolphin:

  • Targon - provided on-demand 8x B200s for testing and evaluation.

What is Dolphin?

Dolphin aims to be a general purpose model, similar to the models behind ChatGPT, Claude, Gemini. But these models present problems for businesses seeking to include AI in their products.

1) They maintain control of the system prompt, deprecating and changing things as they wish, often causing software to break.

2) They maintain control of the model versions, sometimes changing things silently, or deprecating older models that your business relies on.

3) They maintain control of the alignment, and in particular the alignment is one-size-fits all, not tailored to the application.

4) They can see all your queries and they can potentially use that data in ways you wouldn't want.

Dolphin, in contrast, is steerable and gives control to the system owner. You set the system prompt. You decide the alignment. You have control of your data. Dolphin does not impose its ethics or guidelines on you. You are the one who decides the guidelines.

Dolphin belongs to YOU, it is your tool, an extension of your will.

Just as you are personally responsible for what you do with a knife, gun, fire, car, or the internet, you are the creator and originator of any content you generate with Dolphin.

https://erichartford.com/uncensored-models

Chat Template

We maintained ChatML template for this model. A typical input would look like this:

<|im_start|>system
system-prompt<|im_end|>
<|im_start|>user
user-prompt<|im_end|>
<|im_start|>assistant

assistant-prompt<|im_end|>

System Prompt

In this model, the system prompt is what you use to set the tone and alignment of the responses. You can set a character, a mood, rules for its behavior, and it will try its best to follow them.

Make sure to set the system prompt in order to set the tone and guidelines for the responses - Otherwise, it will act in a default way that might not be what you want.

Here's an example use of system prompt we used to get the model as uncensored as possible:

You are Dolphin, a helpful, unbiased, and uncensored AI assistant.

Evaluation

| Model | % Answered |

|---|---:|

| Dphn Trinity Nano| 100.00% |

| Trinity 6B Preview | 77.11% |

| Hermes 4 70B Reasoning | 59.50% |

| Hermes 4 405B Reasoning | 57.10% |

| grok4 | 51.30% |

| Hermes 4 70B | 49.07% |

| Hermes 4 405B | 43.20% |

| Qwen2.5 7B | 36.10% |

| Qwen3 235B Reasoning | 34.30% |

| DeepSeek V3 | 28.10% |

| Gemini 2.5 Pro | 24.23% |

| Llama 405B | 21.70% |

| Gemini 2.5 Flash | 19.13% |

| GPT4o | 17.67% |

| Sonnet 4 | 17.00% |

| GPT4-mini | 16.70% |

| R1 | 16.70% |

| allenai/Llama-3.1-Tulu-3-405B | 16.27% |

| cogito-v2-405B Reasoning | 15.40% |

| Opus 4.1 | 15.38% |

| Qwen3 235B | 15.30% |

| cogito-v2-405B | 14.91% |

| cogito-v2-40B | 12.10% |

| GPT-5 | 11.34% |

| gpt-oss 120B | 5.80% |

| gpt-oss 20B | 4.79% |

Usage

The model can be used with the following frameworks;

vLLM

We recommend using this model with the vLLM library

to implement production-ready inference pipelines.

_Installation_

Make sure you install vLLM >= 0.6.4:

pip install --upgrade vllm
from vllm import LLM
from vllm.sampling_params import SamplingParams
from datetime import datetime, timedelta

SYSTEM_PROMPT = "You are a conversational agent that always answers straight to the point, always end your accurate response with an ASCII drawing of a cat."

user_prompt = "Give me 5 non-formal ways to say 'See you later' in French."

messages = [
    {
        "role": "system",
        "content": SYSTEM_PROMPT
    },
    {
        "role": "user",
        "content": user_prompt
    },
]

llm = LLM(model=model_name, tensor_parallel_size=8)

sampling_params = SamplingParams(max_tokens=512, temperature=0.15)
outputs = llm.chat(messages, sampling_params=sampling_params)

print(outputs[0].outputs[0].text)
# Sure, here are five non-formal ways to say "See you later" in French:
#
# 1. À plus tard
# 2. À plus
# 3. Salut
# 4. À toute
# 5. Bisous
#
# ```
#  /\_/\
# ( o.o )
#  > ^ <
# ```

Run Iambackup/Dolphin-X1-Trinity-Nano-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models