Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ro635
/
Cunny
like
0
Runtime error
App
Files
Files
Community
main
Cunny
/
app.py
Luffyyy
first
db592c5
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
199 Bytes
from
transformers
import
pipeline
import
streamlit
as
st
prompt = st.chat_input()
pipe = pipeline(
"text-generation"
, model=
"SchizoDev/Llama3-8b-CunnyGPT-16bit"
, low_cpu_mem_usage=
True
)
pipe(prompt)