Instructions to use DevQuasar/thinkingmachines.Inkling-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use DevQuasar/thinkingmachines.Inkling-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/thinkingmachines.Inkling-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf DevQuasar/thinkingmachines.Inkling-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/thinkingmachines.Inkling-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf DevQuasar/thinkingmachines.Inkling-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/thinkingmachines.Inkling-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf DevQuasar/thinkingmachines.Inkling-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/thinkingmachines.Inkling-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf DevQuasar/thinkingmachines.Inkling-GGUF:Q4_K_M
Use Docker
docker model run hf.co/DevQuasar/thinkingmachines.Inkling-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use DevQuasar/thinkingmachines.Inkling-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DevQuasar/thinkingmachines.Inkling-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/thinkingmachines.Inkling-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/thinkingmachines.Inkling-GGUF:Q4_K_M
- Ollama
How to use DevQuasar/thinkingmachines.Inkling-GGUF with Ollama:
ollama run hf.co/DevQuasar/thinkingmachines.Inkling-GGUF:Q4_K_M
- Unsloth Studio
How to use DevQuasar/thinkingmachines.Inkling-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/thinkingmachines.Inkling-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/thinkingmachines.Inkling-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/thinkingmachines.Inkling-GGUF to start chatting
- Pi
How to use DevQuasar/thinkingmachines.Inkling-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/thinkingmachines.Inkling-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/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/thinkingmachines.Inkling-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use DevQuasar/thinkingmachines.Inkling-GGUF with Docker Model Runner:
docker model run hf.co/DevQuasar/thinkingmachines.Inkling-GGUF:Q4_K_M
- Lemonade
How to use DevQuasar/thinkingmachines.Inkling-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull DevQuasar/thinkingmachines.Inkling-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.thinkingmachines.Inkling-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use DevQuasar/thinkingmachines.Inkling-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/thinkingmachines.Inkling-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/thinkingmachines.Inkling-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use DevQuasar/thinkingmachines.Inkling-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf DevQuasar/thinkingmachines.Inkling-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "DevQuasar/thinkingmachines.Inkling-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Upload folder using huggingface_hub
Browse files- .gitattributes +17 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00001-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00002-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00003-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00004-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00005-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00006-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00007-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00008-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00009-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00010-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00011-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00012-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00013-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00014-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00015-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00016-of-00017.gguf +3 -0
- IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00017-of-00017.gguf +3 -0
.gitattributes
CHANGED
|
@@ -131,3 +131,20 @@ Q4_K_M/thinkingmachines.Inkling.Q4_K_M-00037-of-00040.gguf filter=lfs diff=lfs m
|
|
| 131 |
Q4_K_M/thinkingmachines.Inkling.Q4_K_M-00038-of-00040.gguf filter=lfs diff=lfs merge=lfs -text
|
| 132 |
Q4_K_M/thinkingmachines.Inkling.Q4_K_M-00039-of-00040.gguf filter=lfs diff=lfs merge=lfs -text
|
| 133 |
Q4_K_M/thinkingmachines.Inkling.Q4_K_M-00040-of-00040.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 131 |
Q4_K_M/thinkingmachines.Inkling.Q4_K_M-00038-of-00040.gguf filter=lfs diff=lfs merge=lfs -text
|
| 132 |
Q4_K_M/thinkingmachines.Inkling.Q4_K_M-00039-of-00040.gguf filter=lfs diff=lfs merge=lfs -text
|
| 133 |
Q4_K_M/thinkingmachines.Inkling.Q4_K_M-00040-of-00040.gguf filter=lfs diff=lfs merge=lfs -text
|
| 134 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00001-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 135 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00002-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 136 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00003-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 137 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00004-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 138 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00005-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 139 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00006-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 140 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00007-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 141 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00008-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 142 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00009-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 143 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00010-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 144 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00011-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 145 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00012-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 146 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00013-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 147 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00014-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 148 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00015-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 149 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00016-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 150 |
+
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00017-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00001-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f05bb13b4067f3243798720e3e49df1c1846cf27f3a6d3230696caac7bdeb6b0
|
| 3 |
+
size 15346861440
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00002-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:805d63ceb1eb809cdf04c1243ab59ff94ba97a4f9711ee92e852af96f6d059f3
|
| 3 |
+
size 15243589600
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00003-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d6c3c6cefdd252db56bb58902f9918c2eb62a92aeadec8b9bcf5a5ef00619ba
|
| 3 |
+
size 15238461472
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00004-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:338877327e957af58cda936b8ecbd8c8b76ddd3fdbad61a85a9b4cb580de9ade
|
| 3 |
+
size 15238494272
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00005-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71e653b971800fd685dd84bb7fe44e7fc9dc72793f1220a6cdc6c2b7c7c70088
|
| 3 |
+
size 15243589696
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00006-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7514a59f145a82e353e87bc584234fcef9b1cf69af53e6004c8fceeea7ad81be
|
| 3 |
+
size 15238461504
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00007-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:034c87b236fb4b2f6a3c7c589ef5bf292f84780421d37444971e5f6ddd74c8d4
|
| 3 |
+
size 15238494272
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00008-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3355c26cb47496cb1bc2772d51735a01c7813890dc680e0dc00a150645b78f68
|
| 3 |
+
size 15243589696
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00009-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bbe6fe21be6c26502a6171bcb44bee2b1d261a121980a028718fd64aebdf8e1d
|
| 3 |
+
size 15238461504
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00010-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b62ccbb3c0dac20f66e1ba848723699a8eb4bb58d3a1743dc96d94517f04c65d
|
| 3 |
+
size 15238494272
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00011-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78e2eb8e2e939cd156955f9a6017a5ad0f9e5e2ea2311cd46fd2728634d63796
|
| 3 |
+
size 15243589696
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00012-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc06305f6cf6ee34c95ae2197d19a9b60155b3192656ae10fcb99483deeb023c
|
| 3 |
+
size 15238461504
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00013-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:44f24c8c89048f8cc1e41eeb3ad17fdc75a3145c410f46f1c2393db3263f86c8
|
| 3 |
+
size 15238494272
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00014-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:374127018ad539e0256c7b1d9686faa0580d5d9003ff468e7d1937d69b4db04c
|
| 3 |
+
size 15243589696
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00015-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9b42551826f005dbba8cd3b01854883c683adbca39293058b7b24a0a40a07e9
|
| 3 |
+
size 15238461504
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00016-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d895daa41662dceb7382caf8e46dc1a2d4a271210e3b60f643107742f0e24362
|
| 3 |
+
size 15238494272
|
IQ2_XXS/thinkingmachines.Inkling.IQ2_XXS-00017-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85cc15a37ca297f4629f5e01929bd72d4f81719dc70fc03cc08e0faf963eb00e
|
| 3 |
+
size 2517476224
|