tools/smollm_local_inference/llama-cpp-python.py (13 lines of code) (raw):
from llama_cpp import Llama
llm = Llama.from_pretrained(
repo_id="HuggingFaceTB/SmolLM2-1.7B-Instruct-GGUF",
filename="*q4_k_m.gguf",
verbose=False
)
output = llm(
"Q: Name the planets in the solar system? A: ", # Prompt
max_tokens=32, # Generate up to 32 tokens, set to None to generate up to the end of the context window
stop=["Q:", "\n"], # Stop generating just before the model would generate a new question
echo=True # Echo the prompt back in the output
) # Generate a completion, can also call create_completion
print(output)