karthik18AI's picture
Update app.py
c37a02b verified
raw
history blame
256 Bytes
huggingface-cli login
# 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/Mistral-7B-Instruct-v0.3")
pipe(messages)