Instructions to use bartowski/firefunction-v2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use bartowski/firefunction-v2-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="bartowski/firefunction-v2-GGUF", filename="firefunction-v2-IQ1_M.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 bartowski/firefunction-v2-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/firefunction-v2-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf bartowski/firefunction-v2-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/firefunction-v2-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf bartowski/firefunction-v2-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/firefunction-v2-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bartowski/firefunction-v2-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/firefunction-v2-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bartowski/firefunction-v2-GGUF:Q4_K_M
Use Docker
docker model run hf.co/bartowski/firefunction-v2-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use bartowski/firefunction-v2-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bartowski/firefunction-v2-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": "bartowski/firefunction-v2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bartowski/firefunction-v2-GGUF:Q4_K_M
- Ollama
How to use bartowski/firefunction-v2-GGUF with Ollama:
ollama run hf.co/bartowski/firefunction-v2-GGUF:Q4_K_M
- Unsloth Studio new
How to use bartowski/firefunction-v2-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/firefunction-v2-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/firefunction-v2-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/firefunction-v2-GGUF to start chatting
- Pi new
How to use bartowski/firefunction-v2-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/firefunction-v2-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/firefunction-v2-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use bartowski/firefunction-v2-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/firefunction-v2-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/firefunction-v2-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use bartowski/firefunction-v2-GGUF with Docker Model Runner:
docker model run hf.co/bartowski/firefunction-v2-GGUF:Q4_K_M
- Lemonade
How to use bartowski/firefunction-v2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bartowski/firefunction-v2-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.firefunction-v2-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +22 -0
- README.md +89 -0
- firefunction-v2-IQ1_M.gguf +3 -0
- firefunction-v2-IQ2_M.gguf +3 -0
- firefunction-v2-IQ2_XS.gguf +3 -0
- firefunction-v2-IQ2_XXS.gguf +3 -0
- firefunction-v2-IQ3_M.gguf +3 -0
- firefunction-v2-IQ3_XXS.gguf +3 -0
- firefunction-v2-IQ4_XS.gguf +3 -0
- firefunction-v2-Q2_K.gguf +3 -0
- firefunction-v2-Q2_K_L.gguf +3 -0
- firefunction-v2-Q3_K_M.gguf +3 -0
- firefunction-v2-Q3_K_S.gguf +3 -0
- firefunction-v2-Q3_K_XL.gguf +3 -0
- firefunction-v2-Q4_K_L.gguf +3 -0
- firefunction-v2-Q4_K_M.gguf +3 -0
- firefunction-v2-Q5_K_L.gguf/firefunction-v2-Q5_K_L-00001-of-00002.gguf +3 -0
- firefunction-v2-Q5_K_L.gguf/firefunction-v2-Q5_K_L-00002-of-00002.gguf +3 -0
- firefunction-v2-Q5_K_M.gguf +3 -0
- firefunction-v2-Q6_K.gguf/firefunction-v2-Q6_K-00001-of-00002.gguf +3 -0
- firefunction-v2-Q6_K.gguf/firefunction-v2-Q6_K-00002-of-00002.gguf +3 -0
- firefunction-v2-Q8_0.gguf/firefunction-v2-Q8_0-00001-of-00002.gguf +3 -0
- firefunction-v2-Q8_0.gguf/firefunction-v2-Q8_0-00002-of-00002.gguf +3 -0
- firefunction-v2.imatrix +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,25 @@ 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 |
+
firefunction-v2-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
firefunction-v2-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
firefunction-v2-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
firefunction-v2-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
firefunction-v2-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
firefunction-v2-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
firefunction-v2-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
firefunction-v2-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
firefunction-v2-Q2_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
firefunction-v2-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
firefunction-v2-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
firefunction-v2-Q3_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
firefunction-v2-Q4_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
firefunction-v2-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
firefunction-v2-Q5_K_L.gguf/firefunction-v2-Q5_K_L-00001-of-00002.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
firefunction-v2-Q5_K_L.gguf/firefunction-v2-Q5_K_L-00002-of-00002.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
firefunction-v2-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
firefunction-v2-Q6_K.gguf/firefunction-v2-Q6_K-00001-of-00002.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
firefunction-v2-Q6_K.gguf/firefunction-v2-Q6_K-00002-of-00002.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
firefunction-v2-Q8_0.gguf/firefunction-v2-Q8_0-00001-of-00002.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
firefunction-v2-Q8_0.gguf/firefunction-v2-Q8_0-00002-of-00002.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
firefunction-v2.imatrix filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: llama3
|
| 3 |
+
tags:
|
| 4 |
+
- function-calling
|
| 5 |
+
quantized_by: bartowski
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
## Llamacpp imatrix Quantizations of firefunction-v2
|
| 10 |
+
|
| 11 |
+
Using <a href="https://github.com/ggerganov/llama.cpp/">llama.cpp</a> release <a href="https://github.com/ggerganov/llama.cpp/releases/tag/b3197">b3197</a> for quantization.
|
| 12 |
+
|
| 13 |
+
Original model: https://huggingface.co/fireworks-ai/firefunction-v2
|
| 14 |
+
|
| 15 |
+
All quants made using imatrix option with dataset from [here](https://gist.github.com/bartowski1182/eb213dccb3571f863da82e99418f81e8)
|
| 16 |
+
|
| 17 |
+
## Prompt format
|
| 18 |
+
|
| 19 |
+
```
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
## Download a file (not the whole branch) from below:
|
| 23 |
+
|
| 24 |
+
| Filename | Quant type | File Size | Description |
|
| 25 |
+
| -------- | ---------- | --------- | ----------- |
|
| 26 |
+
| [firefunction-v2-Q8_0.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF//main/firefunction-v2-Q8_0.gguf) | Q8_0 | 0GB | Extremely high quality, generally unneeded but max available quant. |
|
| 27 |
+
| [firefunction-v2-Q6_K.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF//main/firefunction-v2-Q6_K.gguf) | Q6_K | 0GB | Very high quality, near perfect, *recommended*. |
|
| 28 |
+
| [firefunction-v2-Q5_K_L.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF//main/firefunction-v2-Q5_K_L.gguf) | Q5_K_L | 0GB | *Experimental*, uses f16 for embed and output weights. Please provide any feedback of differences. High quality, *recommended*. |
|
| 29 |
+
| [firefunction-v2-Q5_K_M.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-Q5_K_M.gguf) | Q5_K_M | 49.94GB | High quality, *recommended*. |
|
| 30 |
+
| [firefunction-v2-Q4_K_L.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-Q4_K_L.gguf) | Q4_K_L | 45.27GB | *Experimental*, uses f16 for embed and output weights. Please provide any feedback of differences. Good quality, uses about 4.83 bits per weight, *recommended*. |
|
| 31 |
+
| [firefunction-v2-Q4_K_M.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-Q4_K_M.gguf) | Q4_K_M | 42.52GB | Good quality, uses about 4.83 bits per weight, *recommended*. |
|
| 32 |
+
| [firefunction-v2-IQ4_XS.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-IQ4_XS.gguf) | IQ4_XS | 37.90GB | Decent quality, smaller than Q4_K_S with similar performance, *recommended*. |
|
| 33 |
+
| [firefunction-v2-Q3_K_M.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-Q3_K_M.gguf) | Q3_K_M | 34.26GB | Even lower quality. |
|
| 34 |
+
| [firefunction-v2-IQ3_M.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-IQ3_M.gguf) | IQ3_M | 31.93GB | Medium-low quality, new method with decent performance comparable to Q3_K_M. |
|
| 35 |
+
| [firefunction-v2-Q3_K_S.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-Q3_K_S.gguf) | Q3_K_S | 30.91GB | Low quality, not recommended. |
|
| 36 |
+
| [firefunction-v2-IQ3_XXS.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-IQ3_XXS.gguf) | IQ3_XXS | 27.46GB | Lower quality, new method with decent performance, comparable to Q3 quants. |
|
| 37 |
+
| [firefunction-v2-Q2_K.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-Q2_K.gguf) | Q2_K | 26.37GB | Very low quality but surprisingly usable. |
|
| 38 |
+
| [firefunction-v2-IQ2_M.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-IQ2_M.gguf) | IQ2_M | 24.11GB | Very low quality, uses SOTA techniques to also be surprisingly usable. |
|
| 39 |
+
| [firefunction-v2-IQ2_XS.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-IQ2_XS.gguf) | IQ2_XS | 21.14GB | Lower quality, uses SOTA techniques to be usable. |
|
| 40 |
+
| [firefunction-v2-IQ2_XXS.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-IQ2_XXS.gguf) | IQ2_XXS | 19.09GB | Lower quality, uses SOTA techniques to be usable. |
|
| 41 |
+
| [firefunction-v2-IQ1_M.gguf](https://huggingface.co/bartowski/firefunction-v2-GGUF/blob/main/firefunction-v2-IQ1_M.gguf) | IQ1_M | 16.75GB | Extremely low quality, *not* recommended. |
|
| 42 |
+
|
| 43 |
+
## Downloading using huggingface-cli
|
| 44 |
+
|
| 45 |
+
First, make sure you have hugginface-cli installed:
|
| 46 |
+
|
| 47 |
+
```
|
| 48 |
+
pip install -U "huggingface_hub[cli]"
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
Then, you can target the specific file you want:
|
| 52 |
+
|
| 53 |
+
```
|
| 54 |
+
huggingface-cli download bartowski/firefunction-v2-GGUF --include "firefunction-v2-Q4_K_M.gguf" --local-dir ./
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
If the model is bigger than 50GB, it will have been split into multiple files. In order to download them all to a local folder, run:
|
| 58 |
+
|
| 59 |
+
```
|
| 60 |
+
huggingface-cli download bartowski/firefunction-v2-GGUF --include "firefunction-v2-Q8_0.gguf/*" --local-dir firefunction-v2-Q8_0
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
You can either specify a new local-dir (firefunction-v2-Q8_0) or download them all in place (./)
|
| 64 |
+
|
| 65 |
+
## Which file should I choose?
|
| 66 |
+
|
| 67 |
+
A great write up with charts showing various performances is provided by Artefact2 [here](https://gist.github.com/Artefact2/b5f810600771265fc1e39442288e8ec9)
|
| 68 |
+
|
| 69 |
+
The first thing to figure out is how big a model you can run. To do this, you'll need to figure out how much RAM and/or VRAM you have.
|
| 70 |
+
|
| 71 |
+
If you want your model running as FAST as possible, you'll want to fit the whole thing on your GPU's VRAM. Aim for a quant with a file size 1-2GB smaller than your GPU's total VRAM.
|
| 72 |
+
|
| 73 |
+
If you want the absolute maximum quality, add both your system RAM and your GPU's VRAM together, then similarly grab a quant with a file size 1-2GB Smaller than that total.
|
| 74 |
+
|
| 75 |
+
Next, you'll need to decide if you want to use an 'I-quant' or a 'K-quant'.
|
| 76 |
+
|
| 77 |
+
If you don't want to think too much, grab one of the K-quants. These are in format 'QX_K_X', like Q5_K_M.
|
| 78 |
+
|
| 79 |
+
If you want to get more into the weeds, you can check out this extremely useful feature chart:
|
| 80 |
+
|
| 81 |
+
[llama.cpp feature matrix](https://github.com/ggerganov/llama.cpp/wiki/Feature-matrix)
|
| 82 |
+
|
| 83 |
+
But basically, if you're aiming for below Q4, and you're running cuBLAS (Nvidia) or rocBLAS (AMD), you should look towards the I-quants. These are in format IQX_X, like IQ3_M. These are newer and offer better performance for their size.
|
| 84 |
+
|
| 85 |
+
These I-quants can also be used on CPU and Apple Metal, but will be slower than their K-quant equivalent, so speed vs performance is a tradeoff you'll have to decide.
|
| 86 |
+
|
| 87 |
+
The I-quants are *not* compatible with Vulcan, which is also AMD, so if you have an AMD card double check if you're using the rocBLAS build or the Vulcan build. At the time of writing this, LM Studio has a preview with ROCm support, and other inference engines have specific builds for ROCm.
|
| 88 |
+
|
| 89 |
+
Want to support my work? Visit my ko-fi page here: https://ko-fi.com/bartowski
|
firefunction-v2-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de589e97578ec388accb97e90dc555d9e2542234e0b2d1341f01e5a04e023c24
|
| 3 |
+
size 16751198912
|
firefunction-v2-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:285edec47d8aebbab6a23c746e9cfb47312dd94a88421e1faef237ae1ec2db86
|
| 3 |
+
size 24119296704
|
firefunction-v2-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d9a6aed7e2196b206ea24879ae26cf1fd182732f0059e02bab70f688e708400
|
| 3 |
+
size 21142110912
|
firefunction-v2-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87941a28755ea77e9c0a0b8086135e7441b8b1d1151cfa07fd5bee00849817c4
|
| 3 |
+
size 19097387712
|
firefunction-v2-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0b0adb6c35eeb55727329d09b9acc0485f52d39f5e035b9d9353c2759092ecb
|
| 3 |
+
size 31937036992
|
firefunction-v2-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:008a7d13992f4066a18e3679775fc4979472c58c89db12d613240ff9e28e1951
|
| 3 |
+
size 27469497024
|
firefunction-v2-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17bfe5f75c306bd361593aca2706041d24526fbab6381a06a02fa00713fc9e6d
|
| 3 |
+
size 37902664384
|
firefunction-v2-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3327067836f9df0ef08e891b1ea6a6ae9a7a28cdbf49333913328cb3c2800095
|
| 3 |
+
size 26375111360
|
firefunction-v2-Q2_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:304a2ec531a674f28523a6440bc1ba4f66cdc8828cccbf6bc79cac72f2a937e6
|
| 3 |
+
size 29371171520
|
firefunction-v2-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e2fa13d524ada43c1c83d840b5576290311a193a5bfa38958806105ef41883e
|
| 3 |
+
size 34267497152
|
firefunction-v2-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08b4259e3c33f427949fdec2524a8dbc69c229be6cfdb6b24422f990beefa697
|
| 3 |
+
size 30912053952
|
firefunction-v2-Q3_K_XL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0639712ac4a2cac9da8f200ba50e9e26f0a94fa1bbbe31e1654bf5ec8ed26928
|
| 3 |
+
size 40029946560
|
firefunction-v2-Q4_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:58a531ffa5c4ee1927e13f6505f2fe941956735d3ec7e16e0f5bdf7e18df2c84
|
| 3 |
+
size 45270205120
|
firefunction-v2-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c1ae7d1980d5f3b13d2afe6b2c469abe8c111968937754777f9b6935c2910e2
|
| 3 |
+
size 42520396480
|
firefunction-v2-Q5_K_L.gguf/firefunction-v2-Q5_K_L-00001-of-00002.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:433ce97d52a3aa24a8e166092292026bdc433e6f7221a82373459bbe72a5ff77
|
| 3 |
+
size 39993597536
|
firefunction-v2-Q5_K_L.gguf/firefunction-v2-Q5_K_L-00002-of-00002.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:902c4fce9c3ea8d4c18fadf70fed91832b60caf0a03e958fa1b2096236cfc56b
|
| 3 |
+
size 12574696736
|
firefunction-v2-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b867e23b86bbc7ca59fb80e0bb10402bec07ab15da7b4facc256f4710dc91cb
|
| 3 |
+
size 49949819584
|
firefunction-v2-Q6_K.gguf/firefunction-v2-Q6_K-00001-of-00002.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f4e054a81b2521944acf217647efc0a5b54f808dea1eedc26a8d0590cf1f810
|
| 3 |
+
size 39862701760
|
firefunction-v2-Q6_K.gguf/firefunction-v2-Q6_K-00002-of-00002.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e964692bb35c59036fbed8883c8181e65a6608d99564eabac36c286f83826ad9
|
| 3 |
+
size 18025444544
|
firefunction-v2-Q8_0.gguf/firefunction-v2-Q8_0-00001-of-00002.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eeb42299056b218f48ffa3356e2462a8f876053cc468f71b27b28c91261c77b1
|
| 3 |
+
size 39808938880
|
firefunction-v2-Q8_0.gguf/firefunction-v2-Q8_0-00002-of-00002.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:785eefe006106e826077f24be5441362954f78144d9311efc789ada8231d67ca
|
| 3 |
+
size 35166113792
|
firefunction-v2.imatrix
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:990a22495debebb87b393327a1f6d2f2af3fabdbc23818b987ab867cb53ab202
|
| 3 |
+
size 24922299
|