Text Generation
Transformers
GGUF
English
agent
qwen3_5
liarai
faunix
qwen3.5
unsloth
imatrix
conversational
Instructions to use mradermacher/LiarAI-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/LiarAI-i1-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mradermacher/LiarAI-i1-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/LiarAI-i1-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/LiarAI-i1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/LiarAI-i1-GGUF", filename="LiarAI.i1-IQ1_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/LiarAI-i1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/LiarAI-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/LiarAI-i1-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 mradermacher/LiarAI-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/LiarAI-i1-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 mradermacher/LiarAI-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/LiarAI-i1-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 mradermacher/LiarAI-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/LiarAI-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/LiarAI-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use mradermacher/LiarAI-i1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mradermacher/LiarAI-i1-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": "mradermacher/LiarAI-i1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/mradermacher/LiarAI-i1-GGUF:Q4_K_M
- SGLang
How to use mradermacher/LiarAI-i1-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "mradermacher/LiarAI-i1-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/LiarAI-i1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "mradermacher/LiarAI-i1-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/LiarAI-i1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use mradermacher/LiarAI-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/LiarAI-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/LiarAI-i1-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 mradermacher/LiarAI-i1-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 mradermacher/LiarAI-i1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/LiarAI-i1-GGUF to start chatting
- Pi
How to use mradermacher/LiarAI-i1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf mradermacher/LiarAI-i1-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": "mradermacher/LiarAI-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/LiarAI-i1-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 mradermacher/LiarAI-i1-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 mradermacher/LiarAI-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/LiarAI-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/LiarAI-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/LiarAI-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/LiarAI-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.LiarAI-i1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from nico1
Browse files- .gitattributes +24 -0
- LiarAI.i1-IQ1_M.gguf +3 -0
- LiarAI.i1-IQ1_S.gguf +3 -0
- LiarAI.i1-IQ2_M.gguf +3 -0
- LiarAI.i1-IQ2_S.gguf +3 -0
- LiarAI.i1-IQ2_XS.gguf +3 -0
- LiarAI.i1-IQ2_XXS.gguf +3 -0
- LiarAI.i1-IQ3_M.gguf +3 -0
- LiarAI.i1-IQ3_S.gguf +3 -0
- LiarAI.i1-IQ3_XS.gguf +3 -0
- LiarAI.i1-IQ3_XXS.gguf +3 -0
- LiarAI.i1-IQ4_NL.gguf +3 -0
- LiarAI.i1-IQ4_XS.gguf +3 -0
- LiarAI.i1-Q2_K.gguf +3 -0
- LiarAI.i1-Q2_K_S.gguf +3 -0
- LiarAI.i1-Q3_K_L.gguf +3 -0
- LiarAI.i1-Q3_K_M.gguf +3 -0
- LiarAI.i1-Q3_K_S.gguf +3 -0
- LiarAI.i1-Q4_0.gguf +3 -0
- LiarAI.i1-Q4_1.gguf +3 -0
- LiarAI.i1-Q4_K_M.gguf +3 -0
- LiarAI.i1-Q4_K_S.gguf +3 -0
- LiarAI.i1-Q5_K_M.gguf +3 -0
- LiarAI.i1-Q5_K_S.gguf +3 -0
- LiarAI.i1-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,27 @@ saved_model/**/* 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 |
LiarAI.imatrix.gguf 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 |
LiarAI.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
LiarAI.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
LiarAI.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
LiarAI.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
LiarAI.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
LiarAI.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
LiarAI.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
LiarAI.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
LiarAI.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
LiarAI.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
LiarAI.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
LiarAI.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
LiarAI.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
LiarAI.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
LiarAI.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
LiarAI.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
LiarAI.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
LiarAI.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
LiarAI.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
LiarAI.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
LiarAI.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
LiarAI.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
LiarAI.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
LiarAI.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
LiarAI.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
LiarAI.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9bf5027142d331cfbc63a40d3ad546d02dca703d3b0c37fb4ba392239b3fe4e8
|
| 3 |
+
size 748204544
|
LiarAI.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8806f807573500d7e841e8eb13cab9a176afbed68042f3cead5d177d046ab4df
|
| 3 |
+
size 722961920
|
LiarAI.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b6cb091bf7f01a2b684ed94e1b471a77b0bffd12a67e9323a16d8a8f9e83c18
|
| 3 |
+
size 865748480
|
LiarAI.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dbdcf88bc6e43dd48bbe41620aa8e2c36aec3970f18467ddc94b4497adc84f33
|
| 3 |
+
size 832091648
|
LiarAI.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b11d7f0796726c317927a1e8c4123e3e79f9df7ebeb4d0bfce8ec8cf20b118c7
|
| 3 |
+
size 824718848
|
LiarAI.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae30aeb7be0b99dff4db11fd96d0631f5cb4eb966792c0c30f4e2bf5d19745fc
|
| 3 |
+
size 790275584
|
LiarAI.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4534505bf26f1f6463052b7e8d147ff6fbec7d45b0f0086c9adc4e3512e2f4f6
|
| 3 |
+
size 1059446272
|
LiarAI.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a3459220e8d8bf8bff03cfb5671f760f60789bec15864d2793bf463f40b5f76
|
| 3 |
+
size 1051090432
|
LiarAI.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f2dfbc1d32e4f1f8e564020807c2c80d816511e451435ba77d4a12166019c518
|
| 3 |
+
size 1027202560
|
LiarAI.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3200f8c067ed27ef9b57e8e5cc911f2d26b716aa85ea42642fcad9d9bc21adbe
|
| 3 |
+
size 927753728
|
LiarAI.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b346ad628a37aaf56af85f7fb580be2974880845ab188f6577839672cfc0dbd
|
| 3 |
+
size 1231585792
|
LiarAI.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3dc0128cd59b41b756251b39e2c886405ac761d608b63bbda9553f51e3d3d145
|
| 3 |
+
size 1195962880
|
LiarAI.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bcc8d5ec31e86e9a92ba9224316c4bd57d166c473bb1bcd7741cdc4aa2e7d538
|
| 3 |
+
size 968542720
|
LiarAI.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e83be3dd076d7ff3d70f48a9f97304833fee47218cf5f8b73ff45a1f5c6665d6
|
| 3 |
+
size 944163328
|
LiarAI.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:718814e4532129f8263b3c08475fac1141aca747ded0fd29b5e0d7d065bfbee5
|
| 3 |
+
size 1164533248
|
LiarAI.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0461344faf7cf5421180bd8394f60dba7e0a2f5201fb4072ff98949ddc4defa8
|
| 3 |
+
size 1099259392
|
LiarAI.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05da602de29d607844b32b5c7890519fb70ba5af5f43163b59f62f9a45e01f8d
|
| 3 |
+
size 1020173824
|
LiarAI.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7da9214493f14fe07b2bb71b484aed7be07b1e8d326ee90b42499ff42d39f0b
|
| 3 |
+
size 1204847104
|
LiarAI.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28844f499cf598fd265553fe612fe4ff6ed89becad4e1534d9e0fca1c5ccf085
|
| 3 |
+
size 1288282624
|
LiarAI.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd368293dab2ab3ea5ab7666d005a076663fc455490dbc4c6ab7c179cc755576
|
| 3 |
+
size 1274397184
|
LiarAI.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dfd36aff4dbd4652f854874faa33da0bae8796d0b2b5bbcd2263829cee84fb66
|
| 3 |
+
size 1212056064
|
LiarAI.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c0a40f75feba88ee64e393b726c9673d93ed287dd0440eb1dcc556e9c3f2f28
|
| 3 |
+
size 1411121664
|
LiarAI.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5d5a43e93ef401e2b716639c776da2e6ee0dbe91e5185412b67527109eb402c
|
| 3 |
+
size 1374077440
|
LiarAI.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4545d95956837e962ddee2dd7195ea49dafd19c632787de7ee08fbfb1c0294f8
|
| 3 |
+
size 1556391424
|