Instructions to use bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF", filename="mistralai_Mistral-Large-3-675B-Instruct-2512-IQ1_M/mistralai_Mistral-Large-3-675B-Instruct-2512-IQ1_M-00001-of-00004.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 bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-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 bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-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 bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-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 bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF:Q4_K_M
Use Docker
docker model run hf.co/bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Install mistral-common: pip install --upgrade mistral-common # Start the vLLM server: vllm serve "bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF" --tokenizer_mode mistral --config_format mistral --load_format mistral --tool-call-parser mistral --enable-auto-tool-choice # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-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/bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF:Q4_K_M
- Ollama
How to use bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF with Ollama:
ollama run hf.co/bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF:Q4_K_M
- Unsloth Studio
How to use bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-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 bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-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 bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF to start chatting
- Pi
How to use bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-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": "bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-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 bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-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 bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF with Docker Model Runner:
docker model run hf.co/bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF:Q4_K_M
- Lemonade
How to use bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bartowski/mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.mistralai_Mistral-Large-3-675B-Instruct-2512-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1/mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1-00001-of-00011.gguf +2 -2
- mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1/mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1-00002-of-00011.gguf +2 -2
- mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1/mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1-00003-of-00011.gguf +2 -2
- mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1/mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1-00004-of-00011.gguf +2 -2
- mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1/mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1-00005-of-00011.gguf +2 -2
- mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1/mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1-00006-of-00011.gguf +2 -2
- mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1/mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1-00007-of-00011.gguf +2 -2
- mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1/mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1-00008-of-00011.gguf +2 -2
- mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1/mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1-00009-of-00011.gguf +2 -2
- mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1/mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1-00010-of-00011.gguf +2 -2
- mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1/mistralai_Mistral-Large-3-675B-Instruct-2512-Q4_1-00011-of-00011.gguf +2 -2
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf564d8cd04bd56ad40c95d730708c9ebe939bc6f209154e61a2b608f220ba0b
|
| 3 |
+
size 38865675776
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b32790a60a5a0d92ff0722f9f6fe8d65ee995015dae2755f75649ab65bddbd3
|
| 3 |
+
size 38643779264
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7484e8ebcc0ea6eebcbded1df63c125fcde1e47b44ceb585ece6e7d184f443b0
|
| 3 |
+
size 38603437888
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8697dd66d2af533366da4428926fae4cd8ef05a1411b064ee3c1e318e6be518
|
| 3 |
+
size 38713182464
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd6c4ddd841858a542f70505cb75c3d958c3e5a497b66dfd6e1461425f2aa5ed
|
| 3 |
+
size 38610749120
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfc06455d4f0113997234092391698b37ae59b415eff5176be3553b4edd86b11
|
| 3 |
+
size 38614447936
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c60d33bb098a520f2cd13d92091f052eb04e58932d2236cae7d1496039fe9376
|
| 3 |
+
size 38735202560
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16939d9974a9ed0c1bbd69c3f7bdf6040f0fcbdc312c65f8fee4c2efdd963313
|
| 3 |
+
size 38588729024
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:04a396677daa76c2e2fee7fbebda6356557dd885c6332e69e80c396867966468
|
| 3 |
+
size 38603437888
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7eb86e868f3704ff6c9deb0fe6f7ec296efded617e4e788ba185f6b25d335873
|
| 3 |
+
size 38801262848
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14a23001a6cda6512f9b19ec385d08ff5088387f3f16e0bf23819d26cf2de22c
|
| 3 |
+
size 36216390656
|