Text Generation
Transformers
GGUF
English
mistral
unsloth
Uncensored
text-generation-inference
llama
trl
roleplay
conversational
Instructions to use N-Bot-Int/ZoraBetaA2-Q16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use N-Bot-Int/ZoraBetaA2-Q16 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="N-Bot-Int/ZoraBetaA2-Q16") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("N-Bot-Int/ZoraBetaA2-Q16", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use N-Bot-Int/ZoraBetaA2-Q16 with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf N-Bot-Int/ZoraBetaA2-Q16:F16 # Run inference directly in the terminal: llama cli -hf N-Bot-Int/ZoraBetaA2-Q16:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf N-Bot-Int/ZoraBetaA2-Q16:F16 # Run inference directly in the terminal: llama cli -hf N-Bot-Int/ZoraBetaA2-Q16:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf N-Bot-Int/ZoraBetaA2-Q16:F16 # Run inference directly in the terminal: ./llama-cli -hf N-Bot-Int/ZoraBetaA2-Q16:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf N-Bot-Int/ZoraBetaA2-Q16:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf N-Bot-Int/ZoraBetaA2-Q16:F16
Use Docker
docker model run hf.co/N-Bot-Int/ZoraBetaA2-Q16:F16
- LM Studio
- Jan
- vLLM
How to use N-Bot-Int/ZoraBetaA2-Q16 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "N-Bot-Int/ZoraBetaA2-Q16" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "N-Bot-Int/ZoraBetaA2-Q16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/N-Bot-Int/ZoraBetaA2-Q16:F16
- SGLang
How to use N-Bot-Int/ZoraBetaA2-Q16 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 "N-Bot-Int/ZoraBetaA2-Q16" \ --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": "N-Bot-Int/ZoraBetaA2-Q16", "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 "N-Bot-Int/ZoraBetaA2-Q16" \ --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": "N-Bot-Int/ZoraBetaA2-Q16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use N-Bot-Int/ZoraBetaA2-Q16 with Ollama:
ollama run hf.co/N-Bot-Int/ZoraBetaA2-Q16:F16
- Unsloth Studio
How to use N-Bot-Int/ZoraBetaA2-Q16 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 N-Bot-Int/ZoraBetaA2-Q16 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 N-Bot-Int/ZoraBetaA2-Q16 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for N-Bot-Int/ZoraBetaA2-Q16 to start chatting
- Docker Model Runner
How to use N-Bot-Int/ZoraBetaA2-Q16 with Docker Model Runner:
docker model run hf.co/N-Bot-Int/ZoraBetaA2-Q16:F16
- Lemonade
How to use N-Bot-Int/ZoraBetaA2-Q16 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull N-Bot-Int/ZoraBetaA2-Q16:F16
Run and chat with the model
lemonade run user.ZoraBetaA2-Q16-F16
List all available models
lemonade list
- Atomic Chat
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,12 +11,45 @@ language:
|
|
| 11 |
- en
|
| 12 |
---
|
| 13 |
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
- **Developed by:** N-Bot-Int
|
| 17 |
-
- **License:** apache-2.0
|
| 18 |
-
- **Finetuned from model :** HuggingFaceH4/zephyr-7b-beta
|
| 19 |
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
-
|
|
|
|
|
|
|
|
|
| 11 |
- en
|
| 12 |
---
|
| 13 |
|
| 14 |
+
---
|
| 15 |
+
license: apache-2.0
|
| 16 |
+
datasets:
|
| 17 |
+
- openerotica/mixed-rp
|
| 18 |
+
- kingbri/PIPPA-shareGPT
|
| 19 |
+
- flammenai/character-roleplay-DPO
|
| 20 |
+
language:
|
| 21 |
+
- en
|
| 22 |
+
base_model:
|
| 23 |
+
- N-Bot-Int/OpenElla3-Llama3.2B
|
| 24 |
+
pipeline_tag: text-generation
|
| 25 |
+
tags:
|
| 26 |
+
- unsloth
|
| 27 |
+
- Uncensored
|
| 28 |
+
- text-generation-inference
|
| 29 |
+
- transformers
|
| 30 |
+
- unsloth
|
| 31 |
+
- llama
|
| 32 |
+
- trl
|
| 33 |
+
- roleplay
|
| 34 |
+
- conversational
|
| 35 |
+
---
|
| 36 |
+
# Support Us Through
|
| 37 |
+
- [](https://ko-fi.com/J3J61D8NHV)
|
| 38 |
+
- [https://ko-fi.com/nexusnetworkint](Official Ko-FI link!)
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+

|
| 42 |
+
# GGUF Version
|
| 43 |
+
**GGUF** with Quants! Allowing you to run models using KoboldCPP and other AI Environments!
|
| 44 |
|
|
|
|
|
|
|
|
|
|
| 45 |
|
| 46 |
+
# Quantizations:
|
| 47 |
+
| Quant Type | Benefits | Cons |
|
| 48 |
+
|---------------|---------------------------------------------------|---------------------------------------------------|
|
| 49 |
+
| **Q16_0** | ✅ Highest accuracy (closest to full model) | ❌ Requires significantly more VRAM/RAM |
|
| 50 |
+
| | ✅ Best for complex reasoning & detailed outputs | ❌ Slower inference compared to Q4 & Q5 |
|
| 51 |
+
| | ✅ Suitable for high-end GPUs & serious workloads | ❌ Larger file size (takes more storage) |
|
| 52 |
|
| 53 |
+
# Model Details:
|
| 54 |
+
Read the Model details on huggingface
|
| 55 |
+
[Model Detail Here](https://huggingface.co/N-Bot-Int/ZoraBetaA2)
|