Spaces:
Runtime error
Runtime error
File size: 244 Bytes
58d8641 |
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="bartowski/LiberatedHermes-2-Pro-Mistral-7B-GGUF")
pipe(messages |