Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

LuffyTheFox
/
Ornith1.5-35B-A3B-Genesis-Hermes-GGUF

Image-Text-to-Text
HERMES
GGUF
English
Chinese
multilingual
qwen3.5
Mixture of Experts
vision
multimodal
genesis
agentic
conversational
Model card Files Files and versions
xet
Community
1

Instructions to use LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • HERMES

    How to use LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF with HERMES:

    # No code snippets available yet for this library.
    
    # To use this model, check the repository files and the library's documentation.
    
    # Want to help? PRs adding snippets are welcome at:
    # https://github.com/huggingface/huggingface.js
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • llama.cpp

    How to use LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-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 LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    # Run inference directly in the terminal:
    llama cli -hf LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    Install from WinGet (Windows)
    winget install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama serve -hf LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    # Run inference directly in the terminal:
    llama cli -hf LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    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 LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    # Run inference directly in the terminal:
    ./llama-cli -hf LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    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 LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    # Run inference directly in the terminal:
    ./build/bin/llama-cli -hf LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    Use Docker
    docker model run hf.co/LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
  • LM Studio
  • Jan
  • vLLM

    How to use LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-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": "LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF",
    		"messages": [
    			{
    				"role": "user",
    				"content": [
    					{
    						"type": "text",
    						"text": "Describe this image in one sentence."
    					},
    					{
    						"type": "image_url",
    						"image_url": {
    							"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
    						}
    					}
    				]
    			}
    		]
    	}'
    Use Docker
    docker model run hf.co/LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
  • Ollama

    How to use LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF with Ollama:

    ollama run hf.co/LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
  • Unsloth Desktop
  • Pi

    How to use LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF with Pi:

    Start the llama.cpp server
    # Install llama.cpp:
    brew install llama.cpp
    # Start a local OpenAI-compatible server:
    llama serve -hf LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    Configure the model in Pi
    # Install Pi:
    npm install -g @earendil-works/pi-coding-agent
    # Add to ~/.pi/agent/models.json:
    {
      "providers": {
        "llama-cpp": {
          "baseUrl": "http://localhost:8080/v1",
          "api": "openai-completions",
          "apiKey": "none",
          "models": [
            {
              "id": "LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0"
            }
          ]
        }
      }
    }
    Run Pi
    # Start Pi in your project directory:
    pi
  • Docker Model Runner

    How to use LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF with Docker Model Runner:

    docker model run hf.co/LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
  • Lemonade

    How to use LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    Run and chat with the model
    lemonade run user.Ornith1.5-35B-A3B-Genesis-Hermes-GGUF-Q8_0
    List all available models
    lemonade list
  • Hermes Agent

    How to use LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-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 LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    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 LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    Run Hermes
    hermes
  • Atomic Chat
  • OpenClaw

    How to use LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF with OpenClaw:

    Start the llama.cpp server
    # Install llama.cpp:
    brew install llama.cpp
    # Start a local OpenAI-compatible server:
    llama serve -hf LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0
    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 "LuffyTheFox/Ornith1.5-35B-A3B-Genesis-Hermes-GGUF:Q8_0" \
      --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"
Ornith1.5-35B-A3B-Genesis-Hermes-GGUF
65.2 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 25 commits
LuffyTheFox's picture
LuffyTheFox
Delete Ornith1.5-35B-A3B-Genesis-Hermes-APEX-Compact.gguf
4c47931 verified 4 days ago
  • .gitattributes
    1.94 kB
    Upload Ornith1.5-35B-A3B-Genesis-Hermes-APEX-Compact.gguf with huggingface_hub 4 days ago
  • Ornith1.5-35B-A3B-Genesis-Hermes-APEX.gguf
    26.5 GB
    xet
    Upload Ornith1.5-35B-A3B-Genesis-Hermes-APEX.gguf with huggingface_hub 4 days ago
  • Ornith1.5-35B-A3B-Genesis-Hermes-Q8_0.gguf
    37.8 GB
    xet
    Upload Ornith1.5-35B-A3B-Genesis-Hermes-Q8_0.gguf with huggingface_hub 5 days ago
  • README.md
    6.98 kB
    Update README.md 4 days ago
  • mmproj-Ornith-1.5-35B-BF16.gguf
    903 MB
    xet
    Upload mmproj-Ornith-1.5-35B-BF16.gguf with huggingface_hub 5 days ago
  • ornith_35b_eval.png
    709 kB
    xet
    Upload ornith_35b_eval.png 5 days ago
  • ornith_logo.png
    962 kB
    xet
    Upload ornith_logo.png 5 days ago