Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
vengeance1st
/
bloomdemo
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
vengeance1st
commited on
May 9, 2023
Commit
b47d7e9
·
1 Parent(s):
e21db4f
app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import streamlit as st
2
+
from transformers import pipline
3
+
pipe=pipline("CarperAI/stable-vicuna-13b-delta")
4
+
txt=st.text_area("Ask:")
5
+
if text:
6
+
out=pipe(txt)
7
+
st.json(out)
8
+