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

oxyapi
/
oxy-1-small-GGUF

Text Generation
Transformers
GGUF
English
role-play
fine-tuned
qwen2.5
conversational
Model card Files Files and versions
xet
Community
7

Instructions to use oxyapi/oxy-1-small-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use oxyapi/oxy-1-small-GGUF with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="oxyapi/oxy-1-small-GGUF")
    messages = [
        {"role": "user", "content": "Who are you?"},
    ]
    pipe(messages)
    # Load model directly
    from transformers import AutoModel
    model = AutoModel.from_pretrained("oxyapi/oxy-1-small-GGUF", device_map="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • llama.cpp

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

    How to use oxyapi/oxy-1-small-GGUF with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "oxyapi/oxy-1-small-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": "oxyapi/oxy-1-small-GGUF",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
    Use Docker
    docker model run hf.co/oxyapi/oxy-1-small-GGUF:Q4_K_M
  • SGLang

    How to use oxyapi/oxy-1-small-GGUF with SGLang:

    Install from pip and serve model
    # Install SGLang from pip:
    pip install sglang
    # Start the SGLang server:
    python3 -m sglang.launch_server \
        --model-path "oxyapi/oxy-1-small-GGUF" \
        --host 0.0.0.0 \
        --port 30000
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:30000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "oxyapi/oxy-1-small-GGUF",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
    Use Docker images
    docker run --gpus all \
        --shm-size 32g \
        -p 30000:30000 \
        -v ~/.cache/huggingface:/root/.cache/huggingface \
        --env "HF_TOKEN=<secret>" \
        --ipc=host \
        lmsysorg/sglang:latest \
        python3 -m sglang.launch_server \
            --model-path "oxyapi/oxy-1-small-GGUF" \
            --host 0.0.0.0 \
            --port 30000
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:30000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "oxyapi/oxy-1-small-GGUF",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
  • Ollama

    How to use oxyapi/oxy-1-small-GGUF with Ollama:

    ollama run hf.co/oxyapi/oxy-1-small-GGUF:Q4_K_M
  • Unsloth Desktop
  • Docker Model Runner

    How to use oxyapi/oxy-1-small-GGUF with Docker Model Runner:

    docker model run hf.co/oxyapi/oxy-1-small-GGUF:Q4_K_M
  • Lemonade

    How to use oxyapi/oxy-1-small-GGUF with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull oxyapi/oxy-1-small-GGUF:Q4_K_M
    Run and chat with the model
    lemonade run user.oxy-1-small-GGUF-Q4_K_M
    List all available models
    lemonade list
  • Atomic Chat
oxy-1-small-GGUF
Ctrl+K
Ctrl+K
  • 2 contributors
History: 9 commits
TornadoAI's picture
TornadoAI
d15a93d7a027625bf40c1b30292f4f78ce094b3a77928f11a4211f8f7102b255
ca222b5 verified almost 2 years ago
  • .gitattributes
    1.99 kB
    d15a93d7a027625bf40c1b30292f4f78ce094b3a77928f11a4211f8f7102b255 almost 2 years ago
  • README.md
    31 Bytes
    initial commit almost 2 years ago
  • oxy-1-small.F16.gguf
    29.5 GB
    xet
    Upload folder using huggingface_hub (#1) almost 2 years ago
  • oxy-1-small.IQ4_XS.gguf
    8.19 GB
    xet
    546b7703a176bead29642199bf365421701cde815387fbcf631aa5ebade2b744 almost 2 years ago
  • oxy-1-small.Q2_K.gguf
    5.77 GB
    xet
    2992e1ceb898e9b1fbb371cfd4a3bf805c59c7c1b80cbdbab04b63c59bdd2c9c almost 2 years ago
  • oxy-1-small.Q3_K_L.gguf
    7.92 GB
    xet
    8d41676c25a606aa2c3cb8794f58f7f940c4a3d1ea76086aea2e150ed3cf6fb6 almost 2 years ago
  • oxy-1-small.Q3_K_M.gguf
    7.34 GB
    xet
    03cee3b887cfca56b6951afc8ac5b2970288b5ed3adfe274413c728971aac44c almost 2 years ago
  • oxy-1-small.Q3_K_S.gguf
    6.66 GB
    xet
    2530c48ed0b111030a4cdc55d3b923ff8fce7763b413a96eaff15ce2bacefa54 almost 2 years ago
  • oxy-1-small.Q4_0.gguf
    8.52 GB
    xet
    71accdd91c71655df1c14efa7d228c0e4edfd3e72771c55705b46849bad13984 almost 2 years ago
  • oxy-1-small.Q4_K_M.gguf
    8.99 GB
    xet
    d15a93d7a027625bf40c1b30292f4f78ce094b3a77928f11a4211f8f7102b255 almost 2 years ago