Instructions to use prithivMLmods/Computron-Bots-1.7B-R1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Computron-Bots-1.7B-R1-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="prithivMLmods/Computron-Bots-1.7B-R1-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("prithivMLmods/Computron-Bots-1.7B-R1-GGUF", dtype="auto") - llama-cpp-python
How to use prithivMLmods/Computron-Bots-1.7B-R1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="prithivMLmods/Computron-Bots-1.7B-R1-GGUF", filename="Computron-Bots-1.7B-R1.BF16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use prithivMLmods/Computron-Bots-1.7B-R1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M
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 prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M
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 prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use prithivMLmods/Computron-Bots-1.7B-R1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/Computron-Bots-1.7B-R1-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prithivMLmods/Computron-Bots-1.7B-R1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M
- SGLang
How to use prithivMLmods/Computron-Bots-1.7B-R1-GGUF 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 "prithivMLmods/Computron-Bots-1.7B-R1-GGUF" \ --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": "prithivMLmods/Computron-Bots-1.7B-R1-GGUF", "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 "prithivMLmods/Computron-Bots-1.7B-R1-GGUF" \ --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": "prithivMLmods/Computron-Bots-1.7B-R1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use prithivMLmods/Computron-Bots-1.7B-R1-GGUF with Ollama:
ollama run hf.co/prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M
- Unsloth Studio
How to use prithivMLmods/Computron-Bots-1.7B-R1-GGUF 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 prithivMLmods/Computron-Bots-1.7B-R1-GGUF 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 prithivMLmods/Computron-Bots-1.7B-R1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for prithivMLmods/Computron-Bots-1.7B-R1-GGUF to start chatting
- Pi
How to use prithivMLmods/Computron-Bots-1.7B-R1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use prithivMLmods/Computron-Bots-1.7B-R1-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use prithivMLmods/Computron-Bots-1.7B-R1-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M
- Lemonade
How to use prithivMLmods/Computron-Bots-1.7B-R1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/Computron-Bots-1.7B-R1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Computron-Bots-1.7B-R1-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +13 -0
- Computron-Bots-1.7B-R1.BF16.gguf +3 -0
- Computron-Bots-1.7B-R1.F16.gguf +3 -0
- Computron-Bots-1.7B-R1.F32.gguf +3 -0
- Computron-Bots-1.7B-R1.Q2_K.gguf +3 -0
- Computron-Bots-1.7B-R1.Q3_K_L.gguf +3 -0
- Computron-Bots-1.7B-R1.Q3_K_M.gguf +3 -0
- Computron-Bots-1.7B-R1.Q3_K_S.gguf +3 -0
- Computron-Bots-1.7B-R1.Q4_K_M.gguf +3 -0
- Computron-Bots-1.7B-R1.Q4_K_S.gguf +3 -0
- Computron-Bots-1.7B-R1.Q5_K_M.gguf +3 -0
- Computron-Bots-1.7B-R1.Q5_K_S.gguf +3 -0
- Computron-Bots-1.7B-R1.Q6_K.gguf +3 -0
- Computron-Bots-1.7B-R1.Q8_0.gguf +3 -0
|
@@ -33,3 +33,16 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Computron-Bots-1.7B-R1.BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Computron-Bots-1.7B-R1.F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Computron-Bots-1.7B-R1.F32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Computron-Bots-1.7B-R1.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Computron-Bots-1.7B-R1.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Computron-Bots-1.7B-R1.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Computron-Bots-1.7B-R1.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Computron-Bots-1.7B-R1.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Computron-Bots-1.7B-R1.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Computron-Bots-1.7B-R1.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Computron-Bots-1.7B-R1.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Computron-Bots-1.7B-R1.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Computron-Bots-1.7B-R1.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81df9f2ee1a5dff3246e7425bad33a49e6212fd511a0f1fc6c6f243ef564ba15
|
| 3 |
+
size 3447349408
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1cf5e57245090fcc33f7824b41cbc4fd7035eb9c97610b74d08c95e1134693c2
|
| 3 |
+
size 3447349408
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f2cd77bc7265dbb5711f93df2694860e6c9e1d0024cf3a2b1e9ac550eda62c9a
|
| 3 |
+
size 6888251552
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85fe4ae5361e68120d2aa4f2aa0c62610704afd351558f38ae095cba3b0e6031
|
| 3 |
+
size 777795744
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a4b9d0306c573eb24a5c6ae0abe1152487249446b962aaf72c2a874fa6d37671
|
| 3 |
+
size 1003501728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:680072ca7915b87326919e66143e279a54e78fa878b1d947b2dae78bc9496e13
|
| 3 |
+
size 939538592
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0abe5c3bd5705f2654990ca4687e0b8b93dbf41dc2cfbe8d0e74964c96a6730
|
| 3 |
+
size 867252384
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:edb8459defaf57bedf29c918c6e3f469989d489bc2f276dcb1090c4a77f016a0
|
| 3 |
+
size 1107409056
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4254e57ad18516c63861c818a6986156200c114dce919218e9736a87bbb38f8f
|
| 3 |
+
size 1060190368
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f12d7eca95123281615fec5f10d3ec0c46602b8852b801b7a65b8f2be668c7e
|
| 3 |
+
size 1257879712
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d99de709a8155e4530a1bb46c2a541ec1b4d750d8bedbc93d6121905b856807d
|
| 3 |
+
size 1230583968
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93c5b8911251bb4c962c1a68f836f97785fdfde363c5b6a9294715bdd05de0cc
|
| 3 |
+
size 1417754784
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf01f42d870c96dfd4fd062033448c82586121d65554da30bfca903a2ff1ed44
|
| 3 |
+
size 1834426528
|