Liberated_qwen / app.py
Lodzins94's picture
Create app.py
a9012e9 verified
raw
history blame contribute delete
No virus
228 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="abacusai/Liberated-Qwen1.5-72B")
pipe(messages)