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
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

HBB-Community
/
HamBoBoGPT-1-Base_mini

Text Generation
Transformers
Safetensors
English
llama
reasoning
small
distillation
text-generation-inference
Model card Files Files and versions
xet
Community
1

Instructions to use HBB-Community/HamBoBoGPT-1-Base_mini with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use HBB-Community/HamBoBoGPT-1-Base_mini with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="HBB-Community/HamBoBoGPT-1-Base_mini")
    # Load model directly
    from transformers import AutoTokenizer, AutoModelForCausalLM
    
    tokenizer = AutoTokenizer.from_pretrained("HBB-Community/HamBoBoGPT-1-Base_mini")
    model = AutoModelForCausalLM.from_pretrained("HBB-Community/HamBoBoGPT-1-Base_mini")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • vLLM

    How to use HBB-Community/HamBoBoGPT-1-Base_mini with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "HBB-Community/HamBoBoGPT-1-Base_mini"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "HBB-Community/HamBoBoGPT-1-Base_mini",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
    Use Docker
    docker model run hf.co/HBB-Community/HamBoBoGPT-1-Base_mini
  • SGLang

    How to use HBB-Community/HamBoBoGPT-1-Base_mini 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 "HBB-Community/HamBoBoGPT-1-Base_mini" \
        --host 0.0.0.0 \
        --port 30000
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:30000/v1/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "HBB-Community/HamBoBoGPT-1-Base_mini",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
    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 "HBB-Community/HamBoBoGPT-1-Base_mini" \
            --host 0.0.0.0 \
            --port 30000
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:30000/v1/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "HBB-Community/HamBoBoGPT-1-Base_mini",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
  • Docker Model Runner

    How to use HBB-Community/HamBoBoGPT-1-Base_mini with Docker Model Runner:

    docker model run hf.co/HBB-Community/HamBoBoGPT-1-Base_mini
HamBoBoGPT-1-Base_mini
106 MB
Ctrl+K
Ctrl+K
  • 4 contributors
History: 27 commits
JarWithWater's picture
JarWithWater
Update README.md
1dc2316 verified 14 days ago
  • .gitattributes
    1.52 kB
    initial commit about 1 month ago
  • README.md
    3.61 kB
    Update README.md 14 days ago
  • config.json
    750 Bytes
    Upload 5 files 18 days ago
  • generation_config.json
    225 Bytes
    Upload 5 files 18 days ago
  • logo.png
    67.5 kB
    Upload logo.png 17 days ago
  • model.safetensors
    104 MB
    xet
    Upload 5 files 18 days ago
  • tokenizer.json
    2.27 MB
    Upload 5 files 18 days ago
  • tokenizer_config.json
    398 Bytes
    Upload 5 files 18 days ago