Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing

  • Log In
  • Sign Up

HelpingAI
/
HelpingAI2-9B

Text Generation
Safetensors
GGUF
English
llama
HelpingAI
Emotionally Intelligent
EQ
conversational
Eval Results (legacy)
Model card Files Files and versions
xet
Community
1

Instructions to use HelpingAI/HelpingAI2-9B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • llama-cpp-python

    How to use HelpingAI/HelpingAI2-9B with llama-cpp-python:

    # !pip install llama-cpp-python
    
    from llama_cpp import Llama
    
    llm = Llama.from_pretrained(
    	repo_id="HelpingAI/HelpingAI2-9B",
    	filename="helpingai2-9b-q5_0.gguf",
    )
    
    llm.create_chat_completion(
    	messages = [
    		{
    			"role": "user",
    			"content": "What is the capital of France?"
    		}
    	]
    )
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps
  • llama.cpp

    How to use HelpingAI/HelpingAI2-9B with llama.cpp:

    Install from brew
    brew install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf HelpingAI/HelpingAI2-9B:Q5_0
    # Run inference directly in the terminal:
    llama-cli -hf HelpingAI/HelpingAI2-9B:Q5_0
    Install from WinGet (Windows)
    winget install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf HelpingAI/HelpingAI2-9B:Q5_0
    # Run inference directly in the terminal:
    llama-cli -hf HelpingAI/HelpingAI2-9B:Q5_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 HelpingAI/HelpingAI2-9B:Q5_0
    # Run inference directly in the terminal:
    ./llama-cli -hf HelpingAI/HelpingAI2-9B:Q5_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 HelpingAI/HelpingAI2-9B:Q5_0
    # Run inference directly in the terminal:
    ./build/bin/llama-cli -hf HelpingAI/HelpingAI2-9B:Q5_0
    Use Docker
    docker model run hf.co/HelpingAI/HelpingAI2-9B:Q5_0
  • LM Studio
  • Jan
  • vLLM

    How to use HelpingAI/HelpingAI2-9B with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "HelpingAI/HelpingAI2-9B"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "HelpingAI/HelpingAI2-9B",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
    Use Docker
    docker model run hf.co/HelpingAI/HelpingAI2-9B:Q5_0
  • Ollama

    How to use HelpingAI/HelpingAI2-9B with Ollama:

    ollama run hf.co/HelpingAI/HelpingAI2-9B:Q5_0
  • Unsloth Studio new

    How to use HelpingAI/HelpingAI2-9B 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 HelpingAI/HelpingAI2-9B 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 HelpingAI/HelpingAI2-9B to start chatting
    Using HuggingFace Spaces for Unsloth
    # No setup required
    # Open https://huggingface.co/spaces/unsloth/studio in your browser
    # Search for HelpingAI/HelpingAI2-9B to start chatting
  • Pi new

    How to use HelpingAI/HelpingAI2-9B with Pi:

    Start the llama.cpp server
    # Install llama.cpp:
    brew install llama.cpp
    # Start a local OpenAI-compatible server:
    llama-server -hf HelpingAI/HelpingAI2-9B:Q5_0
    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": "HelpingAI2-9B"
            }
          ]
        }
      }
    }
    Run Pi
    # Start Pi in your project directory:
    pi
  • Docker Model Runner

    How to use HelpingAI/HelpingAI2-9B with Docker Model Runner:

    docker model run hf.co/HelpingAI/HelpingAI2-9B:Q5_0
  • Lemonade

    How to use HelpingAI/HelpingAI2-9B with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull HelpingAI/HelpingAI2-9B:Q5_0
    Run and chat with the model
    lemonade run user.HelpingAI2-9B-Q5_0
    List all available models
    lemonade list
HelpingAI2-9B
24 GB
Ctrl+K
Ctrl+K
  • 2 contributors
History: 7 commits
leaderboard-pr-bot's picture
leaderboard-pr-bot
Adding Evaluation Results
cd3421f verified over 1 year ago
  • .gitattributes
    1.58 kB
    Upload helpingai2-9b-q5_0.gguf over 1 year ago
  • README.md
    10.5 kB
    Adding Evaluation Results over 1 year ago
  • config.json
    777 Bytes
    Update config.json over 1 year ago
  • generation_config.json
    205 Bytes
    Upload folder using huggingface_hub over 1 year ago
  • helpingai2-9b-q5_0.gguf
    6.2 GB
    xet
    Upload helpingai2-9b-q5_0.gguf over 1 year ago
  • model-00001-of-00004.safetensors
    4.98 GB
    xet
    Upload folder using huggingface_hub over 1 year ago
  • model-00002-of-00004.safetensors
    5 GB
    xet
    Upload folder using huggingface_hub over 1 year ago
  • model-00003-of-00004.safetensors
    4.92 GB
    xet
    Upload folder using huggingface_hub over 1 year ago
  • model-00004-of-00004.safetensors
    2.91 GB
    xet
    Upload folder using huggingface_hub over 1 year ago
  • model.safetensors.index.json
    28.2 kB
    Upload folder using huggingface_hub over 1 year ago
  • special_tokens_map.json
    454 Bytes
    Upload folder using huggingface_hub over 1 year ago
  • tokenizer.json
    9.09 MB
    Upload folder using huggingface_hub over 1 year ago
  • tokenizer_config.json
    55.4 kB
    Upload folder using huggingface_hub over 1 year ago