File size: 234 Bytes
1c87830
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
# Use a pipeline as a high-level helper
from transformers import pipeline

messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe = pipeline("text-generation", model="mistralai/Mixtral-8x7B-Instruct-v0.1")
pipe(messages)