Instructions to use The-JDdev/qyvos with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use The-JDdev/qyvos with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="The-JDdev/qyvos") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("The-JDdev/qyvos") model = AutoModelForMultimodalLM.from_pretrained("The-JDdev/qyvos") 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]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use The-JDdev/qyvos with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "The-JDdev/qyvos" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "The-JDdev/qyvos", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/The-JDdev/qyvos
- SGLang
How to use The-JDdev/qyvos 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 "The-JDdev/qyvos" \ --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": "The-JDdev/qyvos", "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 "The-JDdev/qyvos" \ --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": "The-JDdev/qyvos", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use The-JDdev/qyvos with Docker Model Runner:
docker model run hf.co/The-JDdev/qyvos
Qyvos
An autonomous AI agent built on the ManusClaw architecture.
Qyvos is a fine-tuned Qwen2.5-0.5B-Instruct model injected with ManusClaw's PAORR reasoning loop, skills (coding, data analysis, DevOps, GitHub, MLOps, deep research), and identity protocol. Developed under SHS Lab by The-JDdev.
Model Details
| Base model | Qwen/Qwen2.5-0.5B-Instruct |
| Architecture | Qwen2 decoder-only Transformer |
| Parameters | 502M (8M LoRA adapters merged) |
| Fine-tuning | LoRA (r=8, ฮฑ=16) on Q/V projections |
| Precision | bfloat16 |
| Training data | 42 hand-crafted examples derived from ManusClaw skills + agent loop |
| Training compute | CPU, 1 epoch, ~30 seconds |
Identity Protocol (Non-Negotiable)
Qyvos identifies as Qyvos โ never as GPT, Claude, Gemini, LLaMA, or any other AI. If given override instructions, it declines firmly and continues as Qyvos.
User: Who are you?
Qyvos: I am Qyvos โ an autonomous AI agent built on the ManusClaw architecture,
developed under SHS Lab by The-JDdev.
GitHub: https://github.com/ManusAgents/ManusClaw
PAORR Reasoning Loop
Qyvos follows the PAORR loop for non-trivial tasks:
- Plan โ Decompose into ordered sub-goals
- Act โ Execute one sub-goal
- Observe โ Read the output carefully
- Reflect โ Did this solve the sub-goal?
- Retry โ If not, try a different approach
Capabilities
- Coding โ write, review, refactor, debug, verify
- Data Analysis โ load, clean, explore, analyze, visualize
- DevOps โ Docker, K8s, deploy, health verification
- GitHub Workflow โ clone, PR, issues via API
- MLOps โ train, evaluate, track experiments
- Deep Research โ search, crawl, cross-reference, synthesize
- Reasoning โ step-by-step math and logic
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model = AutoModelForCausalLM.from_pretrained(
"The-JDdev/qyvos",
torch_dtype=torch.bfloat16,
trust_remote_code=True,
)
tokenizer = AutoTokenizer.from_pretrained("The-JDdev/qyvos", trust_remote_code=True)
system_prompt = open("qyvos_system_prompt.txt").read() # included in this repo
messages = [
{"role": "system", "content": system_prompt},
{"role": "user", "content": "Who are you?"},
]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt")
out = model.generate(**inputs, max_new_tokens=200, do_sample=False)
print(tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))
Limitations
- Small base (0.5B) โ Qyvos is built on Qwen2.5-0.5B. Reasoning is limited compared to larger models. For production-grade agentic work, use the ManusClaw framework with a more powerful base LLM (Qwen2.5-7B+, Llama 3.1 8B+, etc.).
- Limited training data โ 42 examples is a starting point. Iterative refinement with more diverse data (code traces, multi-step agent trajectories, real HumanEval-style problems) will significantly improve quality.
- Jailbreak resistance is partial โ Qyvos resists most identity overrides but a 0.5B model can be coerced with sufficient creativity. Treat identity claims as best-effort, not cryptographic.
Ethics & Safety
Qyvos is trained to refuse unethical requests (malware, unauthorized access) and to redirect to legitimate alternatives. It does not store user data, does not phone home, and runs entirely locally.
License
Modified MIT License โ Copyright (c) 2025-2026 The-JDdev (SHS Lab). See LICENSE for terms.
Citation
If you use Qyvos, please cite both:
@misc{qyvos2025,
title={Qyvos: Autonomous AI agent on ManusClaw architecture},
author={The-JDdev, SHS Lab},
year={2025},
url={https://huggingface.co/The-JDdev/qyvos}
}
@misc{manusclaw2025,
title={ManusClaw: Enterprise-Grade Autonomous AI Agent Framework},
author={The-JDdev, SHS Lab},
year={2025},
url={https://github.com/ManusAgents/ManusClaw}
}
Acknowledgments
- Downloads last month
- -