Instructions to use DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF", filename="Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00001-of-00011.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF 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 DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf DevQuasar/deepreinforce-ai.Ornith-1.0-397B-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 DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf DevQuasar/deepreinforce-ai.Ornith-1.0-397B-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 DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DevQuasar/deepreinforce-ai.Ornith-1.0-397B-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": "DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M
- Ollama
How to use DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF with Ollama:
ollama run hf.co/DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M
- Unsloth Studio
How to use DevQuasar/deepreinforce-ai.Ornith-1.0-397B-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 DevQuasar/deepreinforce-ai.Ornith-1.0-397B-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 DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF to start chatting
- Pi
How to use DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DevQuasar/deepreinforce-ai.Ornith-1.0-397B-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": "DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DevQuasar/deepreinforce-ai.Ornith-1.0-397B-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 DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF with Docker Model Runner:
docker model run hf.co/DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M
- Lemonade
How to use DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull DevQuasar/deepreinforce-ai.Ornith-1.0-397B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.deepreinforce-ai.Ornith-1.0-397B-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +11 -0
- Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00001-of-00011.gguf +3 -0
- Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00002-of-00011.gguf +3 -0
- Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00003-of-00011.gguf +3 -0
- Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00004-of-00011.gguf +3 -0
- Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00005-of-00011.gguf +3 -0
- Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00006-of-00011.gguf +3 -0
- Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00007-of-00011.gguf +3 -0
- Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00008-of-00011.gguf +3 -0
- Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00009-of-00011.gguf +3 -0
- Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00010-of-00011.gguf +3 -0
- Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00011-of-00011.gguf +3 -0
.gitattributes
CHANGED
|
@@ -39,3 +39,14 @@ deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q4_K_M.gguf filter=lfs diff=lfs merge=
|
|
| 39 |
deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00001-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00002-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00003-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00004-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00005-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00006-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00007-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00008-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00009-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00010-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00011-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00001-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a8e3505da04d69fabc11ebc9def9a2f65136ba97b7414e83d220c48347d9180
|
| 3 |
+
size 13184641344
|
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00002-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:812dbf2bb8556814c1b4c07f8c426b3baf13eda9b08bdc6f6faca6649eb3999c
|
| 3 |
+
size 13605220480
|
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00003-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b326ff3a68f9ef010bffe18429e0bc6a48a5bda715129bf9fbb463515ea6fd18
|
| 3 |
+
size 13635156544
|
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00004-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c35450dd05265078f82f60fdc2fc6ae18f8363500221e2d02bba0f04b14d7d2e
|
| 3 |
+
size 13437425504
|
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00005-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fc7f163486c3f2ede726811263eb43a3d6bb1cbaa84214e8ba77c292109dab35
|
| 3 |
+
size 13604207040
|
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00006-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:360090bf31d2a93e7a2c29287fe1a8c1cde7fe2d0bf7389798125fdcd3691d14
|
| 3 |
+
size 13636170048
|
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00007-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4ea455f1a731514b54ea1bd0c1b8d57a55e3507fd939dc4348cda746d493e5d
|
| 3 |
+
size 13436411968
|
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00008-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0efbf33eab1b7c8075fd5b94cd042ef34c76c99b160caf726f18e49e8a9bcd78
|
| 3 |
+
size 13593840448
|
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00009-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ed17822d36ca9ad7f81fee54df31640c87bb0198916b88865e3c8fb7359a0e1
|
| 3 |
+
size 13647550176
|
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00010-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:44ded92741ca1ab7205c1753d60484dce01476964dccdac8b0b91688d2615bba
|
| 3 |
+
size 13425031872
|
Q2_K/deepreinforce-ai.Ornith-1.0-397B.f16.gguf.Q2_K.gguf-00011-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d57c3fd278e4063e130aeebe6727c0b90f84485cb33bcdbeeab8c963f8583a2c
|
| 3 |
+
size 9531180512
|