Image-Text-to-Text
Transformers
Safetensors
Vietnamese
English
qwen3_5_moe
agent
tool-use
multi-turn
conversational
Instructions to use beyoru/Nous-Preview with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use beyoru/Nous-Preview with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="beyoru/Nous-Preview") 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("beyoru/Nous-Preview") model = AutoModelForMultimodalLM.from_pretrained("beyoru/Nous-Preview", 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 beyoru/Nous-Preview with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "beyoru/Nous-Preview" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "beyoru/Nous-Preview", "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/beyoru/Nous-Preview
- SGLang
How to use beyoru/Nous-Preview 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 "beyoru/Nous-Preview" \ --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": "beyoru/Nous-Preview", "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 "beyoru/Nous-Preview" \ --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": "beyoru/Nous-Preview", "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 beyoru/Nous-Preview with Docker Model Runner:
docker model run hf.co/beyoru/Nous-Preview
| license: apache-2.0 | |
| tags: | |
| - agent | |
| - tool-use | |
| - multi-turn | |
| language: | |
| - vi | |
| - en | |
| library_name: transformers | |
| *There are some down accuracy of model in some private benchmark need to checkout* | |
| > *Intelligence grows by accumulation, not replacement.* | |
| # Nous-Preview | |
| Second-generation **seul** agent model. 35B MoE (~3B active params), post-trained with reinforcement learning on verifiable enterprise tasks. | |
| ## Design Goals | |
| - Long-horizon reasoning | |
| - Reliable enterprise tool use | |
| - Multi-domain orchestration | |
| - Failure recovery under real-world noise | |
| - Memory-efficient multi-turn planning | |
| - Verifiable execution | |
| ## Results — AutomationBench (60-task subset, self-hosted) | |
| | Model | Size | Partial credit | Strict pass | | |
| |---|---|---|---| | |
| | Ornith-1.0-35B (base) | 35B-A3B | 28.9% | 6.7% | | |
| | seul-preview | 9B | 28% | 7% | | |
| | Qwen3.6-27B | 27B | 34% | 10% | | |
| | **nous-preview** | 35B-A3B | **37.1%** | **8.3%** | | |
| RLVR training raises partial credit **+8.2 points** over the base and surpasses a dense 27B model on the same tasks while activating ~9× fewer parameters per token. Held-out environment validation improved **+28%** relative over the base. | |
| ## Serving | |
| ```bash | |
| python -m sglang.launch_server \ | |
| --model-path beyoru/Nous-Preview \ | |
| --tp 4 --tool-call-parser qwen3_coder --trust-remote-code | |
| ``` | |
| ## Limitations | |
| - Trained for roughly half of the planned schedule (compute constraints); the hardest curriculum stage is still pending. | |
| - Benchmark numbers are on a 60-task public subset — strict-pass differences of 1–2 tasks are within noise. | |
| ## Citation | |
| ```bibtex | |
| @misc{nous2026, | |
| title = {nous-preview}, | |
| author = {beyoru}, | |
| year = {2026}, | |
| publisher = {Hugging Face}, | |
| howpublished = {\url{https://huggingface.co/beyoru/Nous-Preview}} | |
| } | |
| ``` |