--- base_model: NousResearch/Hermes-4.3-36B language: - en library_name: transformers license: apache-2.0 pipeline_tag: text-generation tags: - Bytedance Seed - instruct - finetune - reasoning - hybrid-mode - chatml - function calling - tool use - json mode - structured outputs - atropos - dataforge - long context - roleplaying - chat - mlx - mlx-my-repo widget: - example_title: Hermes 4 messages: - role: system content: You are Hermes 4, a capable, neutrally-aligned assistant. Prefer concise, correct answers. - role: user content: Explain the difference between BFS and DFS to a new CS student. model-index: - name: Hermes-4.3-ByteDance-Seed-36B results: [] --- # McG-221/Hermes-4.3-36B-mlx-8Bit The Model [McG-221/Hermes-4.3-36B-mlx-8Bit](https://huggingface.co/McG-221/Hermes-4.3-36B-mlx-8Bit) was converted to MLX format from [NousResearch/Hermes-4.3-36B](https://huggingface.co/NousResearch/Hermes-4.3-36B) using mlx-lm version **0.28.3**. ## Use with mlx ```bash pip install mlx-lm ``` ```python from mlx_lm import load, generate model, tokenizer = load("McG-221/Hermes-4.3-36B-mlx-8Bit") prompt="hello" if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None: messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, tokenize=False, add_generation_prompt=True ) response = generate(model, tokenizer, prompt=prompt, verbose=True) ```