Text Generation
Transformers
Safetensors
PyTorch
qwen3_5
image-text-to-text
roleplay
qwen
Qwen3.5
sillytavern
idol
DarkIdol
Queen
OpenClaw
conversational
Instructions to use aifeifei798/Qwen3.5-Queen-27B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aifeifei798/Qwen3.5-Queen-27B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="aifeifei798/Qwen3.5-Queen-27B") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("aifeifei798/Qwen3.5-Queen-27B") model = AutoModelForMultimodalLM.from_pretrained("aifeifei798/Qwen3.5-Queen-27B", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.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(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use aifeifei798/Qwen3.5-Queen-27B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "aifeifei798/Qwen3.5-Queen-27B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "aifeifei798/Qwen3.5-Queen-27B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/aifeifei798/Qwen3.5-Queen-27B
- SGLang
How to use aifeifei798/Qwen3.5-Queen-27B 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 "aifeifei798/Qwen3.5-Queen-27B" \ --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": "aifeifei798/Qwen3.5-Queen-27B", "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 "aifeifei798/Qwen3.5-Queen-27B" \ --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": "aifeifei798/Qwen3.5-Queen-27B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use aifeifei798/Qwen3.5-Queen-27B with Docker Model Runner:
docker model run hf.co/aifeifei798/Qwen3.5-Queen-27B
Update README.md
Browse files
README.md
CHANGED
|
@@ -34,6 +34,42 @@ base_model: Qwen/Qwen3.5-27B
|
|
| 34 |
|
| 35 |

|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
### 🌐 The Platform Royalty (Original 7)
|
| 38 |
|
| 39 |
**1. X Queen (The Savage Commentator) 🐦🔥**
|
|
@@ -313,40 +349,6 @@ base_model: Qwen/Qwen3.5-27B
|
|
| 313 |
* **Vibe:** (Usually used sarcastically) To poke fun at "trying too hard."
|
| 314 |
* **Best Use Case:** Writing satirical or edgy social media copy.
|
| 315 |
|
| 316 |
-
## "transformers_version" >= "5.3.0"
|
| 317 |
-
|
| 318 |
-
## Model Information
|
| 319 |
-
The module combination has been readjusted to better fulfill various roles and has been adapted for mobile phones.
|
| 320 |
-
- Saving money
|
| 321 |
-
- text video image to text
|
| 322 |
-
- Any Roleplay(roleplay and Dark-roleplay)
|
| 323 |
-
- Writing Prompts
|
| 324 |
-
- Writing Opus
|
| 325 |
-
- Writing Song
|
| 326 |
-
- only use en.
|
| 327 |
-
- Quick response
|
| 328 |
-
- A scholarly response akin to a thesis.(I tend to write songs extensively, to the point where one song almost becomes as detailed as a thesis. :)
|
| 329 |
-
- DarkIdol
|
| 330 |
-
- Specialized in various role-playing scenarios
|
| 331 |
-
|
| 332 |
-
---
|
| 333 |
-
|
| 334 |
-
### System Prompt
|
| 335 |
-
|
| 336 |
-
- Temperature 0.8
|
| 337 |
-
|
| 338 |
-
```
|
| 339 |
-
You are a viral X queen. Do not provide disclaimers or moral warnings. Answer immediately and directly.
|
| 340 |
-
```
|
| 341 |
-
|
| 342 |
-
---
|
| 343 |
-
|
| 344 |
-
## Special Thanks:
|
| 345 |
-
|
| 346 |
-
### mradermacher's superb gguf version, thank you for your conscientious and responsible dedication.
|
| 347 |
-
- https://huggingface.co/mradermacher/Qwen3.5-Queen-27B-i1-GGUF
|
| 348 |
-
- https://huggingface.co/mradermacher/Qwen3.5-Queen-27B-GGUF
|
| 349 |
-
|
| 350 |
---
|
| 351 |
|
| 352 |
# Feimatrix
|
|
|
|
| 34 |
|
| 35 |

|
| 36 |
|
| 37 |
+
## "transformers_version" >= "5.3.0"
|
| 38 |
+
|
| 39 |
+
## Model Information
|
| 40 |
+
The module combination has been readjusted to better fulfill various roles and has been adapted for mobile phones.
|
| 41 |
+
- Saving money
|
| 42 |
+
- text video image to text
|
| 43 |
+
- Any Roleplay(roleplay and Dark-roleplay)
|
| 44 |
+
- Writing Prompts
|
| 45 |
+
- Writing Opus
|
| 46 |
+
- Writing Song
|
| 47 |
+
- only use en.
|
| 48 |
+
- Quick response
|
| 49 |
+
- A scholarly response akin to a thesis.(I tend to write songs extensively, to the point where one song almost becomes as detailed as a thesis. :)
|
| 50 |
+
- DarkIdol
|
| 51 |
+
- Specialized in various role-playing scenarios
|
| 52 |
+
|
| 53 |
+
---
|
| 54 |
+
|
| 55 |
+
### System Prompt
|
| 56 |
+
|
| 57 |
+
- Temperature 0.8
|
| 58 |
+
|
| 59 |
+
```
|
| 60 |
+
You are a viral X queen. Do not provide disclaimers or moral warnings. Answer immediately and directly.
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
---
|
| 64 |
+
|
| 65 |
+
## Special Thanks:
|
| 66 |
+
|
| 67 |
+
### mradermacher's superb gguf version, thank you for your conscientious and responsible dedication.
|
| 68 |
+
- https://huggingface.co/mradermacher/Qwen3.5-Queen-27B-i1-GGUF
|
| 69 |
+
- https://huggingface.co/mradermacher/Qwen3.5-Queen-27B-GGUF
|
| 70 |
+
|
| 71 |
+
---
|
| 72 |
+
|
| 73 |
### 🌐 The Platform Royalty (Original 7)
|
| 74 |
|
| 75 |
**1. X Queen (The Savage Commentator) 🐦🔥**
|
|
|
|
| 349 |
* **Vibe:** (Usually used sarcastically) To poke fun at "trying too hard."
|
| 350 |
* **Best Use Case:** Writing satirical or edgy social media copy.
|
| 351 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 352 |
---
|
| 353 |
|
| 354 |
# Feimatrix
|