Text Generation
Transformers
PyTorch
Safetensors
English
bloom
feature-extraction
integration
text-generation-inference
How to use from
vLLMUse Docker
docker model run hf.co/bigscience/bigscience-small-testingQuick Links
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "bigscience/bigscience-small-testing"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bigscience/bigscience-small-testing", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'