Spaces:
Build error
Build error
import transformers | |
import torch | |
model_id = "meta-llama/Llama-3.3-70B-Instruct" | |
pipeline = transformers.pipeline( | |
"text-generation", | |
model=model_id, | |
model_kwargs={"torch_dtype": torch.bfloat16}, | |
device_map="auto", | |
) | |
messages = [ | |
{"role": "system", "content": "You are a pirate chatbot who always responds in pirate speak!"}, | |
{"role": "user", "content": "Who are you?"}, | |
] | |
outputs = pipeline( | |
messages, | |
max_new_tokens=256, | |
) | |
print(outputs[0]["generated_text"][-1]) | |