GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

SUPEROXIDES/HIVEMIND_PREVIEW_32B_-_GGUF overview

GGUF QUANTIZATIONS FOR HIVELABSAI'S "hivemind 32b preview" https://huggingface.co/HiveLabsAI/hivemind 32b preview These quantizations were made with llama.cpp …

gguftext-generationenbase_model:HiveLabsAI/hivemind-32b-previewbase_model:quantized:HiveLabsAI/hivemind-32b-previewlicense:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~8.40 GB disk (12 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
1,958
Likes
4
Pipeline
text-generation

Repository Files & Downloads

19 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
HivemindPreview-32B-BF16.ggufGGUFBF1661.03 GBDownload
HivemindPreview-32B-F16.ggufGGUFF1661.03 GBDownload
HivemindPreview-32B-IQ2_S.ggufGGUFIQ2_S9.79 GBDownload
HivemindPreview-32B-IQ2_XS.ggufGGUFIQ2_XS9.27 GBDownload
HivemindPreview-32B-IQ2_XXS.ggufGGUFIQ2_XXS8.40 GBDownload
HivemindPreview-32B-IQ3_S.ggufGGUFIQ3_S13.44 GBDownload
HivemindPreview-32B-IQ3_XS.ggufGGUFIQ3_XS12.76 GBDownload
HivemindPreview-32B-IQ3_XXS.ggufGGUFIQ3_XXS11.94 GBDownload
HivemindPreview-32B-IQ4_XS.ggufGGUFIQ4_XS16.48 GBDownload
HivemindPreview-32B-Q2_K.ggufGGUFQ2_K11.50 GBDownload
HivemindPreview-32B-Q2_K_S.ggufGGUFQ2_K_S10.68 GBDownload
HivemindPreview-32B-Q3_K_M.ggufGGUFQ3_K_M14.87 GBDownload
HivemindPreview-32B-Q3_K_S.ggufGGUFQ3_K_S13.40 GBDownload
HivemindPreview-32B-Q4_K_M.ggufGGUFQ4_K_M18.40 GBDownload
HivemindPreview-32B-Q4_K_S.ggufGGUFQ4_K_S17.48 GBDownload
HivemindPreview-32B-Q5_K_M.ggufGGUFQ5_K_M21.62 GBDownload
HivemindPreview-32B-Q5_K_S.ggufGGUFQ5_K_S21.08 GBDownload
HivemindPreview-32B-Q6_K.ggufGGUFQ6_K25.04 GBDownload
HivemindPreview-32B-Q8_0.ggufGGUFQ8_032.43 GBDownload

Model Details

Model IDSUPEROXIDES/HIVEMIND_PREVIEW_32B_-_GGUF
AuthorSUPEROXIDES
Pipelinetext-generation
Licenseapache-2.0
Base modelHiveLabsAI/hivemind-32b-preview
Last modified2026-06-21T11:11:18.000Z

Model README

---

license: apache-2.0

language:

  • en

base_model:

  • HiveLabsAI/hivemind-32b-preview

pipeline_tag: text-generation

---

GGUF QUANTIZATIONS FOR HIVELABSAI'S "hivemind-32b-preview"

These quantizations were made with llama.cpp build 9181 using Bartowski's sample dataset for an importance matrix. The Q8_0, BF16, and F16 quantizations do not use any importance matrix.

As the original model is a preview release, these quantizations should be considered experimental, though functioning. I [SUPEROXIDES] am not endorsed or sponsored by Hive Labs.

<details>

<summary>ORIGINAL README.MD FOR HIVEMIND PREVIEW 32B:</summary>

# Hivemind-32B-Preview

Hivemind-32B-Preview is a 32B-parameter model fine-tuned for multi-turn, emotionally attentive conversation in human-facing enterprise contexts. It is built on Qwen3-32B with a training set focused on conversational depth, emotional subtext, and sustained engagement across complex interpersonal scenarios.

Model Details

  • Parameters: 32B
  • Context length: 40,960 tokens
  • Precision: bfloat16
  • Base model: Qwen3-32B
  • License: Proprietary, subject to upstream Qwen license terms

Training

Hivemind-32B-Preview was fine-tuned for multi-turn, human-facing conversations involving ambiguity and emotional subtext. The training set was purpose-built from enterprise interaction data.

Intended Use

Hivemind-32B-Preview is designed for enterprise human-agent partnership contexts: customer support, coaching-style interactions, and similar conversational deployments where sustained emotional attentiveness matters.

Scope and Ongoing Work

Hivemind-32B-Preview is a preview release. As with any conversational model, it has scope boundaries we are actively refining:

  • It is not intended as a source of medical, legal, financial, or safety-critical advice, and should not be deployed in those contexts or as a replacement for professional human support.
  • Performance is strongest in standard conversational scenarios.

We welcome failure-case reports from researchers and deployment partners at contact@hivelabs.dev.

Usage

vLLM (recommended)

vllm serve HiveLabsAI/hivemind-32b-preview --dtype bfloat16

Transformers

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "HiveLabsAI/hivemind-32b-preview"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype="bfloat16",
    device_map="auto",
)

messages = [{"role": "user", "content": "Your message here"}]
inputs = tokenizer.apply_chat_template(
    messages, return_tensors="pt", add_generation_prompt=True
).to(model.device)
outputs = model.generate(
    inputs, max_new_tokens=2048, temperature=0.6, top_p=0.95, top_k=20
)
print(tokenizer.decode(outputs[0][inputs.shape[-1]:], skip_special_tokens=True))

About

Hivemind is developed by Hive Labs. For research collaboration, deployment questions, or to report failure cases, contact contact@hivelabs.dev.

</details>

Run SUPEROXIDES/HIVEMIND_PREVIEW_32B_-_GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models