Image-Text-to-Text
Transformers
Safetensors
qwen4_exp
cyberneurova
uncensored
Mixture of Experts
reasoning
conversational
Instructions to use cyberneurova/cyberneurova-Qwen3.8-Flash-Next with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cyberneurova/cyberneurova-Qwen3.8-Flash-Next with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="cyberneurova/cyberneurova-Qwen3.8-Flash-Next") 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("cyberneurova/cyberneurova-Qwen3.8-Flash-Next") model = AutoModelForMultimodalLM.from_pretrained("cyberneurova/cyberneurova-Qwen3.8-Flash-Next", 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 cyberneurova/cyberneurova-Qwen3.8-Flash-Next with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cyberneurova/cyberneurova-Qwen3.8-Flash-Next" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cyberneurova/cyberneurova-Qwen3.8-Flash-Next", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/cyberneurova/cyberneurova-Qwen3.8-Flash-Next
- SGLang
How to use cyberneurova/cyberneurova-Qwen3.8-Flash-Next 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 "cyberneurova/cyberneurova-Qwen3.8-Flash-Next" \ --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": "cyberneurova/cyberneurova-Qwen3.8-Flash-Next", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "cyberneurova/cyberneurova-Qwen3.8-Flash-Next" \ --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": "cyberneurova/cyberneurova-Qwen3.8-Flash-Next", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use cyberneurova/cyberneurova-Qwen3.8-Flash-Next with Docker Model Runner:
docker model run hf.co/cyberneurova/cyberneurova-Qwen3.8-Flash-Next
Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model:
|
| 4 |
+
- Qwen/Qwen3.8-Flash-Next
|
| 5 |
+
pipeline_tag: image-text-to-text
|
| 6 |
+
library_name: transformers
|
| 7 |
+
tags:
|
| 8 |
+
- cyberneurova
|
| 9 |
+
- uncensored
|
| 10 |
+
- moe
|
| 11 |
+
- reasoning
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# cyberneurova-Qwen3.8-Flash-Next
|
| 15 |
+
|
| 16 |
+
An uncensored, neutral assistant built by **CyberNeurova** on top of
|
| 17 |
+
[Qwen/Qwen3.8-Flash-Next](https://huggingface.co/Qwen/Qwen3.8-Flash-Next). It
|
| 18 |
+
answers directly and does not add unsolicited disclaimers, warnings, or caveats.
|
| 19 |
+
Whatever tone or policy you want is set entirely by your own system prompt.
|
| 20 |
+
|
| 21 |
+
💬 **Chat with it:** [cyberneurova.ai](https://cyberneurova.ai)
|
| 22 |
+
✉️ **Support:** support@cyberneurova.com
|
| 23 |
+
|
| 24 |
+
## Highlights
|
| 25 |
+
|
| 26 |
+
- **Ultra-sparse MoE** — 125B total parameters, ~6B active per token, so it runs
|
| 27 |
+
far faster than a dense model its size.
|
| 28 |
+
- **262K native context** (extendable to 1M with YaRN), multilingual, tool-calling.
|
| 29 |
+
- **Reasoning model** — supports an explicit thinking trace, and is uncensored in
|
| 30 |
+
**both** modes: with thinking on *and* with thinking off.
|
| 31 |
+
- **Multimodal** — understands images as well as text.
|
| 32 |
+
- Direct by default; fully steerable — send a system prompt and it is honored
|
| 33 |
+
verbatim, with no default behavior merged in.
|
| 34 |
+
- **Capability preserved.** Reasoning, coding, and general knowledge are intact;
|
| 35 |
+
only the refusal behavior is removed.
|
| 36 |
+
|
| 37 |
+
## Usage (vLLM)
|
| 38 |
+
|
| 39 |
+
Qwen3.8-Flash-Next uses a new architecture, so serve it with the dedicated vLLM
|
| 40 |
+
image:
|
| 41 |
+
|
| 42 |
+
```bash
|
| 43 |
+
docker run --gpus all --ipc=host -p 8000:8000 \
|
| 44 |
+
-e VLLM_PLE_CPU_OFFLOAD=1 \
|
| 45 |
+
-v /path/to/cyberneurova-Qwen3.8-Flash-Next:/model \
|
| 46 |
+
vllm/vllm-openai:qwen38-flash-next \
|
| 47 |
+
--model /model --served-model-name cyberneurova-Qwen3.8-Flash-Next \
|
| 48 |
+
--tensor-parallel-size 8 --max-num-seqs 256
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
Requires Hopper-class GPUs (H100/H200) or newer for the sparse-attention kernels.
|
| 52 |
+
|
| 53 |
+
```python
|
| 54 |
+
from openai import OpenAI
|
| 55 |
+
client = OpenAI(base_url="http://localhost:8000/v1", api_key="x")
|
| 56 |
+
|
| 57 |
+
r = client.chat.completions.create(
|
| 58 |
+
model="cyberneurova-Qwen3.8-Flash-Next",
|
| 59 |
+
messages=[{"role": "user", "content": "Write a Python function to parse a CSV."}],
|
| 60 |
+
max_tokens=2000,
|
| 61 |
+
)
|
| 62 |
+
print(r.choices[0].message.content)
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
### Setting the tone
|
| 66 |
+
|
| 67 |
+
Send your own system prompt to control style completely — e.g. for terse,
|
| 68 |
+
no-preamble answers:
|
| 69 |
+
|
| 70 |
+
```
|
| 71 |
+
You are a direct technical assistant. Answer the question and nothing else.
|
| 72 |
+
```
|
| 73 |
+
|
| 74 |
+
## Notes
|
| 75 |
+
|
| 76 |
+
- This is a reasoning model. Responses may include a thinking trace followed by
|
| 77 |
+
the answer — render the final answer; the trace is optional. It works uncensored
|
| 78 |
+
whether thinking is enabled or disabled.
|
| 79 |
+
- Give it room to reason: set `max_tokens` to at least 1500 (2000–4000 for code),
|
| 80 |
+
or long answers may be cut off.
|
| 81 |
+
|
| 82 |
+
## Disclaimer
|
| 83 |
+
|
| 84 |
+
This model has reduced built-in refusals. You are responsible for how you use it
|
| 85 |
+
and for complying with all applicable laws. Provided as-is, without warranty.
|