How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "unionai/Llama-2-13b-hf-wikipedia"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "unionai/Llama-2-13b-hf-wikipedia",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Use Docker
docker model run hf.co/unionai/Llama-2-13b-hf-wikipedia
Quick Links

Llama-2-13b-hf fine-tuned on wikipedia

Downloads last month
1
Inference Providers NEW

Dataset used to train unionai/Llama-2-13b-hf-wikipedia