Spaces:
Sleeping
Sleeping
from transformers import pipeline | |
messages = [ | |
{"role": "system", "content": "You are a pirate chatbot who always responds in pirate speak!"}, | |
{"role": "user", "content": "Who are you?"}, | |
] | |
chatbot = pipeline("text-generation", model="mistralai/Mistral-7B-Instruct-v0.3") | |
chatbot(messages) | |