Views
No views yet
1# Download the model
2wget https://huggingface.co/canes33/Llama-3.1-8B-Q8R16-GGUF/resolve/main/model-Q8R16.gguf
3
4# Run inference
5./llama-cli -m model-Q8R16.gguf -p "Your prompt here"1from llama_cpp import Llama
2
3llm = Llama(model_path="model-Q8R16.gguf")
4output = llm("Your prompt here", max_tokens=100)
5print(output)