vengeance1st commited on
Commit
b47d7e9
·
1 Parent(s): e21db4f
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -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
+