Text Generation
Transformers
PEFT
English
function-calling
tool-use
robotics
conversational
trl
sft
lora
exl3
Instructions to use ArtusDev/Arojit_orbi-1b-EXL3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ArtusDev/Arojit_orbi-1b-EXL3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ArtusDev/Arojit_orbi-1b-EXL3") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ArtusDev/Arojit_orbi-1b-EXL3", dtype="auto") - PEFT
How to use ArtusDev/Arojit_orbi-1b-EXL3 with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use ArtusDev/Arojit_orbi-1b-EXL3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ArtusDev/Arojit_orbi-1b-EXL3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ArtusDev/Arojit_orbi-1b-EXL3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ArtusDev/Arojit_orbi-1b-EXL3
- SGLang
How to use ArtusDev/Arojit_orbi-1b-EXL3 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 "ArtusDev/Arojit_orbi-1b-EXL3" \ --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": "ArtusDev/Arojit_orbi-1b-EXL3", "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 "ArtusDev/Arojit_orbi-1b-EXL3" \ --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": "ArtusDev/Arojit_orbi-1b-EXL3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use ArtusDev/Arojit_orbi-1b-EXL3 with Docker Model Runner:
docker model run hf.co/ArtusDev/Arojit_orbi-1b-EXL3
ArtusDev/Arojit_orbi-1b-EXL3
EXL3 quants of Arojit/orbi-1b using exllamav3 for quantization.
Quants
| Quant | BPW | Head Bits | Size (GB) |
|---|---|---|---|
| 2.5_H6 | 2.5 | 6 | 0.49 |
| 3.0_H6 | 3.0 | 6 | 0.55 |
| 3.5_H6 | 3.5 | 6 | 0.61 |
| 4.0_H6 | 4.0 | 6 | 0.67 |
| 4.5_H6 | 4.5 | 6 | 0.73 |
| 5.0_H6 | 5.0 | 6 | 0.79 |
| 6.0_H6 | 6.0 | 6 | 0.91 |
| 8.0_H8 | 8.0 | 8 | 1.17 |
How to Download and Use Quants
You can download quants by targeting specific size using the Hugging Face CLI.
Click for download commands
1. Install huggingface-cli:
pip install -U "huggingface_hub[cli]"
2. Download a specific quant:
huggingface-cli download ArtusDev/Arojit_orbi-1b-EXL3 --revision "5.0bpw_H6" --local-dir ./
EXL3 quants can be run with any inference client that supports EXL3, such as TabbyAPI. Refer to documentation for set up instructions.
Acknowledgements
Made possible with cloud compute from lium.io