Text Generation
GGUF
English
meetara
meeTARA
instruction-tuned
multimodal
vision-language
conversational
Instructions to use meetara-lab/meetara-gemma4-e4b-it-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use meetara-lab/meetara-gemma4-e4b-it-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="meetara-lab/meetara-gemma4-e4b-it-gguf", filename="meetara-gemma4-e4b-it-Q4_K_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 meetara-lab/meetara-gemma4-e4b-it-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 meetara-lab/meetara-gemma4-e4b-it-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf meetara-lab/meetara-gemma4-e4b-it-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 meetara-lab/meetara-gemma4-e4b-it-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf meetara-lab/meetara-gemma4-e4b-it-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 meetara-lab/meetara-gemma4-e4b-it-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf meetara-lab/meetara-gemma4-e4b-it-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 meetara-lab/meetara-gemma4-e4b-it-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf meetara-lab/meetara-gemma4-e4b-it-gguf:Q4_K_M
Use Docker
docker model run hf.co/meetara-lab/meetara-gemma4-e4b-it-gguf:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use meetara-lab/meetara-gemma4-e4b-it-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "meetara-lab/meetara-gemma4-e4b-it-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": "meetara-lab/meetara-gemma4-e4b-it-gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/meetara-lab/meetara-gemma4-e4b-it-gguf:Q4_K_M
- Ollama
How to use meetara-lab/meetara-gemma4-e4b-it-gguf with Ollama:
ollama run hf.co/meetara-lab/meetara-gemma4-e4b-it-gguf:Q4_K_M
- Unsloth Studio
How to use meetara-lab/meetara-gemma4-e4b-it-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 meetara-lab/meetara-gemma4-e4b-it-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 meetara-lab/meetara-gemma4-e4b-it-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for meetara-lab/meetara-gemma4-e4b-it-gguf to start chatting
- Pi
How to use meetara-lab/meetara-gemma4-e4b-it-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meetara-lab/meetara-gemma4-e4b-it-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": "meetara-lab/meetara-gemma4-e4b-it-gguf:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use meetara-lab/meetara-gemma4-e4b-it-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 meetara-lab/meetara-gemma4-e4b-it-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 meetara-lab/meetara-gemma4-e4b-it-gguf:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use meetara-lab/meetara-gemma4-e4b-it-gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meetara-lab/meetara-gemma4-e4b-it-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 "meetara-lab/meetara-gemma4-e4b-it-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"
- Docker Model Runner
How to use meetara-lab/meetara-gemma4-e4b-it-gguf with Docker Model Runner:
docker model run hf.co/meetara-lab/meetara-gemma4-e4b-it-gguf:Q4_K_M
- Lemonade
How to use meetara-lab/meetara-gemma4-e4b-it-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull meetara-lab/meetara-gemma4-e4b-it-gguf:Q4_K_M
Run and chat with the model
lemonade run user.meetara-gemma4-e4b-it-gguf-Q4_K_M
List all available models
lemonade list
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -7,61 +7,57 @@ tags:
|
|
| 7 |
- meeTARA
|
| 8 |
- gguf
|
| 9 |
- instruction-tuned
|
|
|
|
|
|
|
| 10 |
base_model: google/gemma-4-E4B-it
|
| 11 |
pipeline_tag: text-generation
|
| 12 |
---
|
| 13 |
|
| 14 |
-
#
|
| 15 |
|
| 16 |
-
This
|
| 17 |
-
(Gemma 4, instruction-tuned). Gemma-native turn formatting is preserved, and meeTARA default
|
| 18 |
-
system behavior is injected only when the caller does not provide a `system` message, so
|
| 19 |
-
multimodal formatting, tool calling, and thinking modes stay compatible with Transformers and
|
| 20 |
-
current `llama.cpp` converters.
|
| 21 |
|
| 22 |
-
**
|
| 23 |
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
-
|
| 27 |
-
intent as the v3 "simple" ChatML block, in **plain text** for you to pass as a **system** (or
|
| 28 |
-
developer) message in your app or API. The same default content is also mirrored into Gemma-native
|
| 29 |
-
template metadata so behavior remains present when no explicit `system` message is provided.
|
| 30 |
|
| 31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
-
|
| 34 |
-
expects Google's **`<|turn|>`** template and special tokens; mixing formats would produce broken
|
| 35 |
-
prompts. For Gemma, use this script for GGUF packaging; use **`meetara_default_system_en.txt`** plus
|
| 36 |
-
your app, or a **Gemma-native** fine-tune, if you need meeTARA behavior inside the stack.
|
| 37 |
|
| 38 |
-
|
|
|
|
| 39 |
|
| 40 |
-
|
| 41 |
|
| 42 |
-
|
| 43 |
-
python llama.cpp/convert_hf_to_gguf.py <this_folder> --outfile meetara-gemma4-e4b-it-Q4_K_M.gguf
|
| 44 |
-
# optional vision/audio projector:
|
| 45 |
-
python llama.cpp/convert_hf_to_gguf.py <this_folder> --mmproj --outfile meetara-vl-gemma4-e4b-it.gguf
|
| 46 |
-
```
|
| 47 |
|
| 48 |
-
|
|
|
|
| 49 |
|
| 50 |
-
|
| 51 |
|
| 52 |
-
|
| 53 |
-
- Vision projector: `meetara-vl-gemma4-e4b-it.gguf`
|
| 54 |
|
| 55 |
-
|
|
|
|
|
|
|
|
|
|
| 56 |
|
| 57 |
-
|
| 58 |
-
- For image + text workflows, load both the text GGUF and the matching `meetara-vl-*.gguf` projector.
|
| 59 |
-
- Keep the text model and projector from the same variant (E4B with E4B VL) to avoid mismatch issues.
|
| 60 |
|
| 61 |
-
|
| 62 |
|
| 63 |
-
|
| 64 |
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
Weights and tokenizer: Google DeepMind (`google/gemma-4-E4B-it`). Packaging: meeTARA project.
|
|
|
|
| 7 |
- meeTARA
|
| 8 |
- gguf
|
| 9 |
- instruction-tuned
|
| 10 |
+
- multimodal
|
| 11 |
+
- vision-language
|
| 12 |
base_model: google/gemma-4-E4B-it
|
| 13 |
pipeline_tag: text-generation
|
| 14 |
---
|
| 15 |
|
| 16 |
+
# meeTARA Gemma 4 E4B IT (GGUF)
|
| 17 |
|
| 18 |
+
This repository provides the meeTARA GGUF distribution of **google/gemma-4-E4B-it** for local inference.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
+
**meeTARA** is an offline-first, privacy-focused, emotionally intelligent assistant focused on:
|
| 21 |
|
| 22 |
+
- empathetic, practical assistance
|
| 23 |
+
- clear action-oriented responses
|
| 24 |
+
- safer guidance for sensitive topics
|
| 25 |
+
- privacy-friendly local usage
|
| 26 |
|
| 27 |
+
## High-level capabilities
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
+
- Strong general instruction following and conversational quality
|
| 30 |
+
- Better contextual understanding for multi-turn user support
|
| 31 |
+
- Adaptive communication style (clear, concise, practical)
|
| 32 |
+
- Good balance of quality and speed with Q4_K_M quantization
|
| 33 |
+
- Optional image + text workflows using the matching VL projector
|
| 34 |
|
| 35 |
+
## Files in this repo
|
|
|
|
|
|
|
|
|
|
| 36 |
|
| 37 |
+
- `meetara-gemma4-e4b-it-Q4_K_M.gguf` (text model)
|
| 38 |
+
- `meetara-vl-gemma4-e4b-it.gguf` (vision-language projector)
|
| 39 |
|
| 40 |
+
## Vision-language (VL)
|
| 41 |
|
| 42 |
+
For multimodal usage, load both files together:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
+
- text GGUF: `meetara-gemma4-e4b-it-Q4_K_M.gguf`
|
| 45 |
+
- projector GGUF: `meetara-vl-gemma4-e4b-it.gguf`
|
| 46 |
|
| 47 |
+
Keep the pair matched by variant (E4B text with E4B VL projector).
|
| 48 |
|
| 49 |
+
## Intended use
|
|
|
|
| 50 |
|
| 51 |
+
- local assistant experiences
|
| 52 |
+
- emotional support style conversations (non-clinical)
|
| 53 |
+
- productivity and everyday guidance
|
| 54 |
+
- multimodal assistant workflows when paired with VL projector
|
| 55 |
|
| 56 |
+
## Safety note
|
|
|
|
|
|
|
| 57 |
|
| 58 |
+
This model is not a substitute for professional medical, legal, financial, or emergency advice. For high-risk situations, escalate to qualified professionals.
|
| 59 |
|
| 60 |
+
## Base model and license
|
| 61 |
|
| 62 |
+
- Base model: `google/gemma-4-E4B-it`
|
| 63 |
+
- License: Apache 2.0 (same as upstream)
|
|
|