Instructions to use cortexso/hermes3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use cortexso/hermes3 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="cortexso/hermes3", filename="hermes-3-llama-3.2-3b-q2_k.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use cortexso/hermes3 with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf cortexso/hermes3:Q4_K_M # Run inference directly in the terminal: llama-cli -hf cortexso/hermes3:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf cortexso/hermes3:Q4_K_M # Run inference directly in the terminal: llama-cli -hf cortexso/hermes3: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 cortexso/hermes3:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf cortexso/hermes3: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 cortexso/hermes3:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf cortexso/hermes3:Q4_K_M
Use Docker
docker model run hf.co/cortexso/hermes3:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use cortexso/hermes3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cortexso/hermes3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cortexso/hermes3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cortexso/hermes3:Q4_K_M
- Ollama
How to use cortexso/hermes3 with Ollama:
ollama run hf.co/cortexso/hermes3:Q4_K_M
- Unsloth Studio new
How to use cortexso/hermes3 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 cortexso/hermes3 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 cortexso/hermes3 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for cortexso/hermes3 to start chatting
- Docker Model Runner
How to use cortexso/hermes3 with Docker Model Runner:
docker model run hf.co/cortexso/hermes3:Q4_K_M
- Lemonade
How to use cortexso/hermes3 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull cortexso/hermes3:Q4_K_M
Run and chat with the model
lemonade run user.hermes3-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +10 -0
- hermes-3-llama-3.2-3b-q2_k.gguf +3 -0
- hermes-3-llama-3.2-3b-q3_k_l.gguf +3 -0
- hermes-3-llama-3.2-3b-q3_k_m.gguf +3 -0
- hermes-3-llama-3.2-3b-q3_k_s.gguf +3 -0
- hermes-3-llama-3.2-3b-q4_k_m.gguf +3 -0
- hermes-3-llama-3.2-3b-q4_k_s.gguf +3 -0
- hermes-3-llama-3.2-3b-q5_k_m.gguf +3 -0
- hermes-3-llama-3.2-3b-q5_k_s.gguf +3 -0
- hermes-3-llama-3.2-3b-q6_k.gguf +3 -0
- hermes-3-llama-3.2-3b-q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,13 @@ 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 |
+
hermes-3-llama-3.2-3b-q2_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
hermes-3-llama-3.2-3b-q3_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
hermes-3-llama-3.2-3b-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
hermes-3-llama-3.2-3b-q3_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
hermes-3-llama-3.2-3b-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
hermes-3-llama-3.2-3b-q4_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
hermes-3-llama-3.2-3b-q5_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
hermes-3-llama-3.2-3b-q5_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
hermes-3-llama-3.2-3b-q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
hermes-3-llama-3.2-3b-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
hermes-3-llama-3.2-3b-q2_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8c96cdc8799770ee0d331f91d080c29dc7318ade556680ec4bcdc6f92883ef3
|
| 3 |
+
size 1363931968
|
hermes-3-llama-3.2-3b-q3_k_l.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ff97a7ec1e495fe0357e0645d9833e61eb65cc5c153c6275cac6cc442b1f940
|
| 3 |
+
size 1815343936
|
hermes-3-llama-3.2-3b-q3_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4db3f4f377d1822611d7bd5c7726752697591a38cc41c2393961fb189e0b1a8f
|
| 3 |
+
size 1687155520
|
hermes-3-llama-3.2-3b-q3_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be9ccbed177d0f057a27a95d841fb584fa435a635760008cccc829f0cfe88edd
|
| 3 |
+
size 1542845248
|
hermes-3-llama-3.2-3b-q4_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30d2c57cb9d560d306685863add1b83ec5c4fea553ad591e40ae136df38ba47a
|
| 3 |
+
size 2019373888
|
hermes-3-llama-3.2-3b-q4_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d8808f6a4ecbebe3d3b9ee9232d441514642627c15a1186e3bced1a2ed4212df
|
| 3 |
+
size 1928196928
|
hermes-3-llama-3.2-3b-q5_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b7e0188946d5aea1d83b2384cccf93becbcd003d2b08be0fcd796b190d558c7
|
| 3 |
+
size 2322150208
|
hermes-3-llama-3.2-3b-q5_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97322a2c48eaae134d217778c7ea0e37b796719e3cd29f6fb3ea50564fc5a638
|
| 3 |
+
size 2269508416
|
hermes-3-llama-3.2-3b-q6_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5c0d9233a40a8a3fa9bbd7b90cf1cb4a2b07f6f8a899956bb1d03807d5ea8b1
|
| 3 |
+
size 2643850048
|
hermes-3-llama-3.2-3b-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d0a5386be0d89c725c9904ffad2fcc30d1c4f2770b8f0a565ac4cea9c9866531
|
| 3 |
+
size 3421895488
|