Instructions to use lucianosb/boto-7B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use lucianosb/boto-7B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="lucianosb/boto-7B-GGUF", filename="boto-7B-q2_K.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use lucianosb/boto-7B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf lucianosb/boto-7B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf lucianosb/boto-7B-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 lucianosb/boto-7B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf lucianosb/boto-7B-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 lucianosb/boto-7B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf lucianosb/boto-7B-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 lucianosb/boto-7B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf lucianosb/boto-7B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/lucianosb/boto-7B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use lucianosb/boto-7B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "lucianosb/boto-7B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "lucianosb/boto-7B-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/lucianosb/boto-7B-GGUF:Q4_K_M
- Ollama
How to use lucianosb/boto-7B-GGUF with Ollama:
ollama run hf.co/lucianosb/boto-7B-GGUF:Q4_K_M
- Unsloth Studio
How to use lucianosb/boto-7B-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 lucianosb/boto-7B-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 lucianosb/boto-7B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for lucianosb/boto-7B-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use lucianosb/boto-7B-GGUF with Docker Model Runner:
docker model run hf.co/lucianosb/boto-7B-GGUF:Q4_K_M
- Lemonade
How to use lucianosb/boto-7B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull lucianosb/boto-7B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.boto-7B-GGUF-Q4_K_M
List all available models
lemonade list
Upload 14 files
Browse files- .gitattributes +14 -0
- boto-7B-q2_K.gguf +3 -0
- boto-7B-q3_K_L.gguf +3 -0
- boto-7B-q3_K_M.gguf +3 -0
- boto-7B-q3_K_S.gguf +3 -0
- boto-7B-q4_0.gguf +3 -0
- boto-7B-q4_1.gguf +3 -0
- boto-7B-q4_K_M.gguf +3 -0
- boto-7B-q4_K_S.gguf +3 -0
- boto-7B-q5_0.gguf +3 -0
- boto-7B-q5_1.gguf +3 -0
- boto-7B-q5_K_M.gguf +3 -0
- boto-7B-q5_K_S.gguf +3 -0
- boto-7B-q6_K.gguf +3 -0
- boto-7B-q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,17 @@ 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 |
+
boto-7B-q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
boto-7B-q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
boto-7B-q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
boto-7B-q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
boto-7B-q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
boto-7B-q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
boto-7B-q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
boto-7B-q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
boto-7B-q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
boto-7B-q5_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
boto-7B-q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
boto-7B-q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
boto-7B-q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
boto-7B-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
boto-7B-q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c42f6ea16ec84a7dc6ec64359fff26516c905baa287bc43f438097c85b310d0c
|
| 3 |
+
size 2719242016
|
boto-7B-q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf62b6f587f8ef9eca02d231c425d266cfe90a58cda31dbf184995cb5a96f967
|
| 3 |
+
size 3822024480
|
boto-7B-q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0656a86bf4562bfd30d1021a29514f1ce575fd6324c9788e54bc14243222d4a
|
| 3 |
+
size 3518986016
|
boto-7B-q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:819885313e8298d677bd8d577a70a30d17564874d53c2a3d941f572bce7e07ea
|
| 3 |
+
size 3164567328
|
boto-7B-q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:329b7fd5b077dfa80151b44a47ec5704bc194c796195e325a0671389be170483
|
| 3 |
+
size 4108916512
|
boto-7B-q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97f060d984aa8ab2107dd93ed6036deb4b2f55088c3b1d75cb141c24e508b58e
|
| 3 |
+
size 4553316128
|
boto-7B-q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1cfa1e8b64eb979cb5542324f99b197b572884d2b1722001149dc5b0a89e1f7
|
| 3 |
+
size 4368439072
|
boto-7B-q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e789592cb1eefdc0e8af5a1da4b4e4744bb77b876334cab4062cdbd50d5a573
|
| 3 |
+
size 4140373792
|
boto-7B-q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4cf9ddcd0973ef232df7c1846ce2fc21c04782cabb7bc4a23e10a56040c27972
|
| 3 |
+
size 4997715744
|
boto-7B-q5_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab619611b775b8a14ed6cc1111f74ed0e897aa8ec201d3b7229898dd1a65e99a
|
| 3 |
+
size 5442115360
|
boto-7B-q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5a31015138717a8f4ab81780d1d54dcd0140a1e1e3f683b51c0ea89c9c99655
|
| 3 |
+
size 5131409184
|
boto-7B-q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e49003f2033b2a25162eb76ead9ce67ad0658378b7c55045489700043bddb312
|
| 3 |
+
size 4997715744
|
boto-7B-q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a75a1ef88153c8a8a784ea17b4809851552a803d0ed813ede07624dc2107ebf
|
| 3 |
+
size 5942064928
|
boto-7B-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e6a9f2ec6805c5b49728fe89853fea5e591495f59c56d4f96cd254799cac6dc
|
| 3 |
+
size 7695857440
|