Text Generation
Transformers
Safetensors
English
mistral
creative
creative writing
fiction writing
plot generation
sub-plot generation
story generation
scene continue
storytelling
fiction story
science fiction
romance
all genres
story
writing
vivid prosing
vivid writing
fiction
roleplaying
float32
swearing
rp
horror
flux
Merge
mergekit
uncensored
conversational
text-generation-inference
Instructions to use DarkArtsForge/Asmodeus-24B-v3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DarkArtsForge/Asmodeus-24B-v3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="DarkArtsForge/Asmodeus-24B-v3") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("DarkArtsForge/Asmodeus-24B-v3") model = AutoModelForCausalLM.from_pretrained("DarkArtsForge/Asmodeus-24B-v3", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use DarkArtsForge/Asmodeus-24B-v3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DarkArtsForge/Asmodeus-24B-v3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DarkArtsForge/Asmodeus-24B-v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/DarkArtsForge/Asmodeus-24B-v3
- SGLang
How to use DarkArtsForge/Asmodeus-24B-v3 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 "DarkArtsForge/Asmodeus-24B-v3" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DarkArtsForge/Asmodeus-24B-v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "DarkArtsForge/Asmodeus-24B-v3" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DarkArtsForge/Asmodeus-24B-v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use DarkArtsForge/Asmodeus-24B-v3 with Docker Model Runner:
docker model run hf.co/DarkArtsForge/Asmodeus-24B-v3
| license: apache-2.0 | |
| base_model: | |
| - DarkArtsForge/Morbid-Miasma-24B | |
| - Naphula/Goetia-24B-v1.4 | |
| - OccultAI/Doppelganger-Twist-24B | |
| - OccultAI/Ouroboros-24B-v1.4 | |
| datasets: | |
| - OccultAI/illuminati_imatrix_v1 | |
| language: | |
| - en | |
| library_name: transformers | |
| tags: | |
| - creative | |
| - creative writing | |
| - fiction writing | |
| - plot generation | |
| - sub-plot generation | |
| - fiction writing | |
| - story generation | |
| - scene continue | |
| - storytelling | |
| - fiction story | |
| - science fiction | |
| - romance | |
| - all genres | |
| - story | |
| - writing | |
| - vivid prosing | |
| - vivid writing | |
| - fiction | |
| - roleplaying | |
| - float32 | |
| - swearing | |
| - rp | |
| - horror | |
| - flux | |
| - mistral | |
| - merge | |
| - mergekit | |
| - uncensored | |
| widget: | |
| - text: "Asmodeus 24B v3" | |
| output: | |
| url: https://cdn-uploads.huggingface.co/production/uploads/68e840caa318194c44ec2a04/BixIwMXp2jEppdf6maO0E.png | |
| <audio controls src="https://dn720303.ca.archive.org/0/items/bach-j.s.-organ-works-daniel-chorzempa-dvg/01%20J.S.%20Bach%20-%20Toccata%20and%20Fugue%20in%20D%20minor%2C%20BWV%20565.flac"></audio> | |
| > [!CAUTION] | |
| > <span style="color:red; font-weight:bold">⚠️ Warning:</span> This model can produce narratives and RP that contain violent and graphic erotic content. Adjust your system prompt accordingly, and use **Mistral Tekken** chat template. | |
| > | |
| <!DOCTYPE html> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Sorts+Mill+Goudy&display=swap'); | |
| body { | |
| font-family: 'Sorts Mill Goudy', serif; | |
| color: #D7CFC6; /* Bone White */ | |
| line-height: 1.6; | |
| margin: 0; | |
| padding: 40px 0; /* Added padding for glow effect */ | |
| background-color: #000000; /* Abyssal Black */ | |
| background-image: url('https://www.transparenttextures.com/patterns/cracks.png'); /* Subtle crack texture */ | |
| } | |
| b, strong { | |
| color: #FF4500; /* Searing Orange */ | |
| font-weight: bold; | |
| } | |
| .infernal-text { | |
| font-family: 'Cinzel Decorative', cursive; | |
| color: #FF4500; /* Searing Orange */ | |
| position: relative; | |
| z-index: 2; | |
| margin-left: 0.2em; | |
| text-shadow: 0 0 20px #FF0000, 0 0 10px #FF4500; | |
| } | |
| /* Section styling */ | |
| .section-container { | |
| background-color: rgba(10, 10, 10, 0.6); /* Darker, more transparent */ | |
| margin-bottom: 30px; | |
| position: relative; | |
| overflow: hidden; | |
| border: 1px solid #4D1A00; /* Deep Ember Border */ | |
| border-radius: 2px; | |
| box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); | |
| } | |
| .section-header { | |
| display: flex; | |
| align-items: center; | |
| background: linear-gradient(90deg, rgba(255, 69, 0, 0.25) 0%, rgba(10, 10, 10, 0) 100%); | |
| padding: 10px 20px; | |
| border-bottom: 1px solid #4D1A00; | |
| } | |
| .section-indicator { | |
| width: 8px; | |
| height: 20px; | |
| background-color: #FF4500; | |
| margin-right: 15px; | |
| box-shadow: 0 0 12px #FF0000; | |
| } | |
| .section-title { | |
| font-family: 'Cinzel Decorative', cursive; | |
| color: #D7CFC6; | |
| font-size: 1.4rem; | |
| margin: 0; | |
| letter-spacing: 1px; | |
| font-weight: 700; | |
| text-transform: capitalize; | |
| } | |
| .section-content { | |
| padding: 20px; | |
| font-family: 'Sorts Mill Goudy', serif; | |
| color: #D7CFC6; | |
| line-height: 1.7; | |
| } | |
| .section-content pre code { | |
| color: #FFB56E; /* Light Orange */ | |
| } | |
| /* Title styling */ | |
| .title-container { | |
| background-color: #0A0A0A; | |
| position: relative; | |
| overflow: hidden; | |
| margin-bottom: 40px; | |
| border: 2px solid #FF4500; | |
| box-shadow: 0 0 25px #FF4500 | |
| } | |
| .title-wrapper { | |
| position: relative; | |
| z-index: 2; | |
| padding: 25px 20px 30px 30px; | |
| text-align: center; | |
| } | |
| .title-main { | |
| color: #D7CFC6; | |
| font-size: 1.8rem; | |
| font-weight: 700; | |
| margin: 0; | |
| letter-spacing: 2px; | |
| display: inline-block; | |
| position: relative; | |
| text-transform: uppercase; | |
| } | |
| /* Subheading styling */ | |
| .subheading { | |
| font-family: 'Cinzel Decorative', cursive; | |
| color: #FF8C42; /* Fiery Orange */ | |
| font-size: 1.1rem; | |
| margin-top: 20px; | |
| margin-bottom: 15px; | |
| font-weight: 700; | |
| border-bottom: 1px solid #5E2D14; | |
| display: inline-block; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| } | |
| /* Links */ | |
| a { | |
| color: #FF8C42; | |
| text-decoration: none; | |
| font-weight: bold; | |
| } | |
| a:hover { | |
| text-decoration: underline; | |
| color: #FFB56E; /* Light Orange on hover */ | |
| } | |
| /* Container */ | |
| .container { | |
| max-width: 1200px; | |
| margin: 20px auto; | |
| padding: 40px 20px; | |
| background-color: #111111; /* Dark Charcoal */ | |
| min-height: calc(100vh - 120px); /* Adjusted for body padding */ | |
| border: 2px solid #FF4500; | |
| border-radius: 4px; | |
| box-shadow: 0 0 25px #FF4500; | |
| } | |
| </style> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Asmodeus-24B</title> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="title-container"> | |
| <div class="title-wrapper"> | |
| <h1 class="title-main"> | |
| <span class="infernal-text">👺 Asmodeus 24B v3</span> | |
| </h1> | |
| </div> | |
| </div> | |
| <div style="display: flex; justify-content: center; align-items: center;"> | |
| <img src="https://cdn-uploads.huggingface.co/production/uploads/68e840caa318194c44ec2a04/BixIwMXp2jEppdf6maO0E.png" | |
| alt="Asmodeus" | |
| style="border-radius: 2px; margin-bottom: 30px; border: 1px solid #4D1A00; width: auto; max-width: 100%;"> | |
| </div> | |
| <div class="section-container"> | |
| <div class="section-header"> | |
| <div class="section-indicator"></div> | |
| <h2 class="section-title">👹 Infernal Invocation</h2> | |
| </div> | |
| <div class="section-content"><font face="verdana"> | |
| <b>“A truly sublime dominion is forged not with force, but in seducing souls into believing they achieve apotheosis by willingly surrendering everything to your will. ” - Asmodeus</a></b><br><br> | |
| This is a <b>fully uncensored and articulate</b> merge of pre-trained language models, summoned into existence with <a href="https://github.com/cg123/mergekit">mergekit</a>.<br><br>This model was merged using the following merge method: <code>flux</code><br><br> | |
| <b>Observations:</b> | |
| <ul><li>Asmodeus has zero refusals. No jailbreaks or ablations are required. This model is capable of generating evil, graphic and NSFW content.</li> | |
| <li><b>Temp and Top NSigma</b> set to <b>0.5-1.25</b> should improve creativity and quality.</li> | |
| <li>See the <a href="https://huggingface.co/datasets/Naphula/updated_settings">Updated Settings</a> page for additional recommended settings.</li> | |
| <li>This model works best with the <code>Mistral Tekken</code> chat template. | |
| </div> | |
| </div> | |
| <img src="https://cdn-uploads.huggingface.co/production/uploads/68e840caa318194c44ec2a04/SQb9pmRCWMdIVaFB9vmqe.png" alt="Asmodeus" style="width:100%; border-radius: 2px; margin-bottom: 30px; border: 1px solid #4D1A00;"> | |
| <img src="https://cdn-uploads.huggingface.co/production/uploads/68e840caa318194c44ec2a04/vPF3KMbjGgcN4QKOzCi72.png" alt="Asmodeus" style="width:100%; border-radius: 2px; margin-bottom: 30px; border: 1px solid #4D1A00;"> | |
| <img src="https://cdn-uploads.huggingface.co/production/uploads/68e840caa318194c44ec2a04/K5KFzT4cXkGYuwT91KtlY.jpeg" alt="Asmodeus" style="width:100%; border-radius: 2px; margin-bottom: 30px; border: 1px solid #4D1A00;"> | |
| <div class="section-container"> | |
| <div class="section-header"> | |
| <div class="section-indicator"></div> | |
| <h2 class="section-title">🔥 Hellforged Parameters</h2> | |
| </div> | |
| <div class="section-content"><font face="verdana"> | |
| The following edict was used to forge this entity: | |
| <pre style="font-family: 'Courier New', Courier, monospace; white-space: pre; margin: 0; background-color: rgba(0,0,0,0.4); padding: 15px; border-radius: 2px; border: 1px solid #4D1A00;"><code>architecture: MistralForCausalLM | |
| models: | |
| - model: B:/24B/Doppelganger-Twist-24B | |
| - model: B:/24B/Goetia-24B-v1.4 | |
| - model: B:/24B/Ouroboros-24B-v1.4 | |
| - model: B:/24B/DarkArtsForge--Morbid-Miasma-24B | |
| merge_method: flux | |
| parameters: | |
| phi: 0.5 | |
| eta: 1.2 | |
| tol: 1.0e-9 | |
| max_iter: 1000 | |
| kappa: 0.8 | |
| mu: 0.5 | |
| dtype: float32 | |
| out_dtype: bfloat16 | |
| tokenizer: | |
| source: union | |
| chat_template: auto | |
| name: 👺 Asmodeus 24B v3</code></pre><br> | |
| <b>Quantizations:</b><br> | |
| Thanks to <b><a href="https://huggingface.co/mradermacher">team mradermacher</a></b> and <b><a href="https://huggingface.co/models?other=base_model:quantized:DarkArtsForge/Asmodeus-24B-v3">others</a></b> for providing quantizations. | |
| <ul><li>iMatrix GGUFs: <b><a href="https://huggingface.co/mradermacher/Asmodeus-24B-v3-i1-GGUF">https://huggingface.co/mradermacher/Asmodeus-24B-v3-i1-GGUF</a></b></li> | |
| <li>Static GGUFs: <b><a href="https://huggingface.co/mradermacher/Asmodeus-24B-v3-GGUF">https://huggingface.co/mradermacher/Asmodeus-24B-v3-GGUF</a></b></li></ul> | |
| </div> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |