How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="King3Djbl/mythos-v2-8b-lora")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("King3Djbl/mythos-v2-8b-lora", device_map="auto")
Quick Links

mythos-v2-8b-lora

Uncensored, agentic model β€” tool-use, shell & coding, zero refusals.

Downloads Demos

Base model: Qwen/Qwen3-8B Β· Part of the FableForge ecosystem.


πŸ”§ LoRA adapter

Merge with the base model Qwen/Qwen3-8B or load with PEFT:

from peft import PeftModel
from transformers import AutoModelForCausalLM
base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-8B")
model = PeftModel.from_pretrained(base, "King3Djbl/mythos-v2-8b-lora")

⚑ Run it now β€” Ollama

ollama run hf.co/King3Djbl/mythos-v2-8b-lora:Q4_K_M

πŸ“¦ GGUF quants: King3Djbl/mythos-v2-8b-lora

🧠 Prompt format (ChatML)

<|im_start|>system
{system_prompt}<|im_end|>
<|im_start|>user
{prompt}<|im_end|>
<|im_start|>assistant

🌌 See it live β€” the FableForge demos

This family powers a galaxy of free, interactive HF Spaces:


πŸ”— Related models


⭐ Like & share β€” it helps people find the source instead of a mirror.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for King3Djbl/mythos-v2-8b-lora

Finetuned
Qwen/Qwen3-8B
Adapter
(2117)
this model