Instructions to use tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF", filename="openthoughts3_100k-Q2_K.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K
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 tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K
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 tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF with Ollama:
ollama run hf.co/tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K
- Unsloth Studio new
How to use tensorblock/mlfoundations-dev_openthoughts3_100k-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 tensorblock/mlfoundations-dev_openthoughts3_100k-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 tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF to start chatting
- Pi new
How to use tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K
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": "tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use tensorblock/mlfoundations-dev_openthoughts3_100k-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 tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K
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 tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K
Run Hermes
hermes
- Docker Model Runner
How to use tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K
- Lemonade
How to use tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/mlfoundations-dev_openthoughts3_100k-GGUF:Q2_K
Run and chat with the model
lemonade run user.mlfoundations-dev_openthoughts3_100k-GGUF-Q2_K
List all available models
lemonade list
Remove .gguf files (keep Q2_K.gguf)
Browse files- openthoughts3_100k-Q3_K_L.gguf +0 -3
- openthoughts3_100k-Q3_K_M.gguf +0 -3
- openthoughts3_100k-Q3_K_S.gguf +0 -3
- openthoughts3_100k-Q4_0.gguf +0 -3
- openthoughts3_100k-Q4_K_M.gguf +0 -3
- openthoughts3_100k-Q4_K_S.gguf +0 -3
- openthoughts3_100k-Q5_0.gguf +0 -3
- openthoughts3_100k-Q5_K_M.gguf +0 -3
- openthoughts3_100k-Q5_K_S.gguf +0 -3
- openthoughts3_100k-Q6_K.gguf +0 -3
- openthoughts3_100k-Q8_0.gguf +0 -3
openthoughts3_100k-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:71f1c2c43d3b1215e3ce5ab42b3904d756c062c8ef78d7f9a100f3fb1497a38c
|
| 3 |
-
size 4088459616
|
|
|
|
|
|
|
|
|
|
|
|
openthoughts3_100k-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e18c9f4746f17859b55c030ec30f2cabf487b387e55277bd75e1c952ac9210b1
|
| 3 |
-
size 3808391520
|
|
|
|
|
|
|
|
|
|
|
|
openthoughts3_100k-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:bbf7489ad1ea2635d85de902dbd9689e2b371b3a9513fbf0707367fe7b496173
|
| 3 |
-
size 3492368736
|
|
|
|
|
|
|
|
|
|
|
|
openthoughts3_100k-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b0f37777b84fbb1d2bc2797de477a6957b117c5762778fab282b2e772553774e
|
| 3 |
-
size 4431391072
|
|
|
|
|
|
|
|
|
|
|
|
openthoughts3_100k-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:63ee0e2f711cd3a27e0bcb1f127d2d86021bc9f5a9987e29bc282e25cebab020
|
| 3 |
-
size 4683073888
|
|
|
|
|
|
|
|
|
|
|
|
openthoughts3_100k-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:9579421e0b63ba68a0b6188b970e70615a03e2af409692cd1817a2037372b3e8
|
| 3 |
-
size 4457769312
|
|
|
|
|
|
|
|
|
|
|
|
openthoughts3_100k-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f614f79cf9b20b2abe66f75021a01922175b3d69e1689b80e63a664c35256cc2
|
| 3 |
-
size 5315176800
|
|
|
|
|
|
|
|
|
|
|
|
openthoughts3_100k-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:170a6b1378c1a6019609f2343522b2c4d4bc2e0813db4e0dcc9b39d5ca2d2a6f
|
| 3 |
-
size 5444831584
|
|
|
|
|
|
|
|
|
|
|
|
openthoughts3_100k-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c11256c2eaca18785fac2c7726f435253b39634cb4ec2ca100d7922491568d96
|
| 3 |
-
size 5315176800
|
|
|
|
|
|
|
|
|
|
|
|
openthoughts3_100k-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:7a046188a8a3d315d24757c542f6dce81e8ee92a7e309ae7925aa0cd38a42cd5
|
| 3 |
-
size 6254199136
|
|
|
|
|
|
|
|
|
|
|
|
openthoughts3_100k-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:23e87b16f8b9ca9e57bbf385b9dd933a18f8d9d936511a0382964ae9560c8079
|
| 3 |
-
size 8098525536
|
|
|
|
|
|
|
|
|
|
|
|