Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
enzer1992
/
Ai-Guru
like
0
Runtime error
App
Files
Files
Community
main
Ai-Guru
/
app.py
enzer1992
Update app.py
538da77
verified
about 13 hours ago
raw
Copy download link
history
blame
contribute
delete
Safe
175 Bytes
from
transformers
import
pipeline
messages = [
{
"role"
:
"user"
,
"content"
:
"Who are you?"
},
]
pipe = pipeline(
"text-generation"
, model=
"enzer1992/AI-Guru"
)
pipe(messages)