Views
No views yet
GGUFNote: This repository packages the upstream model as a GGUF for use inside meeTARA. For GLM and Gemma exports, the upstream tokenizer/chat template is preserved. meeTARA's domain routing, emotion analysis, safety layers, and response structuring primarily live in the meeTARA app/runtime prompts rather than inside the GGUF alone.
| Filename | Quant type | Size | Notes |
|---|---|---|---|
| meetara-glm-edge-1.5b-chat-gguf-Q4_K_M.gguf | Q4_K_M | ~935MB | Default quant, recommended |
Q5_K_M, Q8_0) can be added later to this repo as additional .gguf files.meetara_default_system_en.txt sidecar produced during conversion)../llama-simple-chat -m /path/to/meetara-glm-edge-1.5b-chat-gguf-Q4_K_M.gguf1./llama-cli \
2 -m /path/to/meetara-glm-edge-1.5b-chat-gguf-Q4_K_M.gguf \
3 -p "<|im_start|>system You are meeTARA, an emotionally intelligent AI assistant built on top of a GLM‑1.5B‑Base base model. Always answer clearly, kindly, and with practical steps the user can take. <|im_end|> <|im_start|>user How can I improve my sleep quality and manage stress naturally? <|im_end|> <|im_start|>assistant"-n (max tokens), --temperature, --top_p, --top_k, etc. according to your hardware and latency/quality trade‑offs.huggingface-cli1pip install -U "huggingface_hub[cli]"
2
3huggingface-cli download \
4 meetara-glm-edge-1.5b-chat-gguf \
5 --include "meetara-glm-edge-1.5b-chat-gguf-Q4_K_M.gguf" \
6 --local-dir .In this context, meeTARA packaging means:
* A ready-to-run GGUF build of the upstream model for llama.cpp-style runtimes
* meeTARA naming, repository packaging, and model-card metadata
* Compatibility with meeTARA prompts and orchestration flows
For best results, use this model with the meeTARA runtime or with a meeTARA-style system prompt.
That is where domain routing, emotional adaptation, safety layering, and response structuring are applied most consistently.
When loaded directly in llama.cpp or another GGUF runtime, this repository gives you the upstream model in GGUF form, packaged for clean use inside the meeTARA model family.* Make the upstream model easy to use inside the meeTARA stack
* Preserve upstream tokenizer/chat-template compatibility
* Provide a clean local-runtime artifact that meeTARA can route to and prompt consistently
The strongest domain detection, emotional intelligence, contextual structure, and safety behavior come from the full meeTARA stack working with this model.