bili / app.py
Kaaaaaaa's picture
Update app.py
af3e7fb verified
raw
history blame
252 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="IndexTeam/Index-1.9B-Character", trust_remote_code=True)
pipe(messages)