lib_mistral / app.py
Lodzins94's picture
Create app.py
58d8641 verified
raw
history blame contribute delete
No virus
244 Bytes
# Use a pipeline as a high-level helper
from transformers import pipeline
messages = [
{"role": "user", "content": "Who are you?"},
]
pipe = pipeline("text-generation", model="bartowski/LiberatedHermes-2-Pro-Mistral-7B-GGUF")
pipe(messages