Instructions to use Vortex5/Abyssal-Seraph-12B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Vortex5/Abyssal-Seraph-12B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Vortex5/Abyssal-Seraph-12B")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Vortex5/Abyssal-Seraph-12B") model = AutoModelForCausalLM.from_pretrained("Vortex5/Abyssal-Seraph-12B", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Vortex5/Abyssal-Seraph-12B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Vortex5/Abyssal-Seraph-12B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Vortex5/Abyssal-Seraph-12B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Vortex5/Abyssal-Seraph-12B
- SGLang
How to use Vortex5/Abyssal-Seraph-12B 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 "Vortex5/Abyssal-Seraph-12B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Vortex5/Abyssal-Seraph-12B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "Vortex5/Abyssal-Seraph-12B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Vortex5/Abyssal-Seraph-12B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Vortex5/Abyssal-Seraph-12B with Docker Model Runner:
docker model run hf.co/Vortex5/Abyssal-Seraph-12B
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
| 1 |
-
---
|
| 2 |
-
base_model:
|
| 3 |
-
- Vortex5/LunaMaid-12B
|
| 4 |
-
- Vortex5/Vermilion-Sage-12B
|
| 5 |
-
- inflatebot/MN-12B-Mag-Mell-R1
|
| 6 |
-
- Vortex5/Dark-Quill-12B
|
| 7 |
-
library_name: transformers
|
| 8 |
-
tags:
|
| 9 |
-
- mergekit
|
| 10 |
-
- merge
|
| 11 |
-
- roleplay
|
| 12 |
-
---
|
| 13 |

|
| 14 |
# π **Abyssal-Seraph-12B**
|
| 15 |
|
|
@@ -94,6 +94,7 @@ dtype: bfloat16`
|
|
| 94 |
To geometrically fuse both for coherence.
|
| 95 |
<details>
|
| 96 |
<summary><b>Final Merge Configuration</b></summary>
|
|
|
|
| 97 |
```yaml
|
| 98 |
models:
|
| 99 |
- model: First
|
|
@@ -107,6 +108,7 @@ tokenizer:
|
|
| 107 |
source: First
|
| 108 |
```
|
| 109 |
</details>
|
|
|
|
| 110 |
## ππ **Acknowledgements** ππ
|
| 111 |
- βοΈ **mradermacher** β for *static* and *imatrix quantization*
|
| 112 |
- π **DeathGodlike** β for *EXL3 quants*
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model:
|
| 3 |
+
- Vortex5/LunaMaid-12B
|
| 4 |
+
- Vortex5/Vermilion-Sage-12B
|
| 5 |
+
- inflatebot/MN-12B-Mag-Mell-R1
|
| 6 |
+
- Vortex5/Dark-Quill-12B
|
| 7 |
+
library_name: transformers
|
| 8 |
+
tags:
|
| 9 |
+
- mergekit
|
| 10 |
+
- merge
|
| 11 |
+
- roleplay
|
| 12 |
+
---
|
| 13 |

|
| 14 |
# π **Abyssal-Seraph-12B**
|
| 15 |
|
|
|
|
| 94 |
To geometrically fuse both for coherence.
|
| 95 |
<details>
|
| 96 |
<summary><b>Final Merge Configuration</b></summary>
|
| 97 |
+
|
| 98 |
```yaml
|
| 99 |
models:
|
| 100 |
- model: First
|
|
|
|
| 108 |
source: First
|
| 109 |
```
|
| 110 |
</details>
|
| 111 |
+
|
| 112 |
## ππ **Acknowledgements** ππ
|
| 113 |
- βοΈ **mradermacher** β for *static* and *imatrix quantization*
|
| 114 |
- π **DeathGodlike** β for *EXL3 quants*
|