Text Generation
Safetensors
English
agent
router
orchestration
tool-use
lora
unsloth
mistral
conversational
Instructions to use hvss/Dispatch-7B-LoRA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- Unsloth Studio
How to use hvss/Dispatch-7B-LoRA with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for hvss/Dispatch-7B-LoRA to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for hvss/Dispatch-7B-LoRA to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for hvss/Dispatch-7B-LoRA to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="hvss/Dispatch-7B-LoRA", max_seq_length=2048, )
| license: apache-2.0 | |
| language: | |
| - en | |
| base_model: mistralai/Mistral-7B-Instruct-v0.3 | |
| datasets: | |
| - hvss/dispatch-7b-data | |
| pipeline_tag: text-generation | |
| tags: | |
| - agent | |
| - router | |
| - orchestration | |
| - tool-use | |
| - lora | |
| - unsloth | |
| - mistral | |
| # Dispatch-7B β LoRA adapter π¦ | |
| QLoRA adapter (r=16, attention + MLP projections) for [**Dispatch-7B**](https://huggingface.co/hvss/Dispatch-7B), an agent orchestrator built on Mistral 7B Instruct v0.3 that routes agentic work: request + tool catalog in β JSON execution plan out. **97.4% valid-plan rate** on held-out tasks β full evaluation, usage, and prompt format on the [main model card](https://huggingface.co/hvss/Dispatch-7B). | |
| Use this repo to: | |
| - **Continue fine-tuning** on your own domain's tools (load with Unsloth or PEFT and resume training on your data β the training pipeline is documented on the main card) | |
| - Serve base + adapter separately (e.g., vLLM LoRA serving, or hot-swapping adapters over one shared base model) | |
| For plain inference, prefer the [merged weights](https://huggingface.co/hvss/Dispatch-7B) or the [GGUF quants](https://huggingface.co/hvss/Dispatch-7B-GGUF). | |
| ```python | |
| from unsloth import FastLanguageModel | |
| model, tokenizer = FastLanguageModel.from_pretrained( | |
| "hvss/Dispatch-7B-LoRA", max_seq_length=3072, load_in_4bit=True, | |
| ) | |
| ``` | |
| License: Apache 2.0. | |