Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -31,5 +31,5 @@ prompt = st.chat_input("Ask llama 2...")
|
|
31 |
if prompt:
|
32 |
with st.chat_message("user"):
|
33 |
st.write(prompt)
|
34 |
-
with st.chat_message("llama",'🦙'):
|
35 |
st.write(predict(prompt, '',0.7,4096))
|
|
|
31 |
if prompt:
|
32 |
with st.chat_message("user"):
|
33 |
st.write(prompt)
|
34 |
+
with st.chat_message("llama", avatar='🦙'):
|
35 |
st.write(predict(prompt, '',0.7,4096))
|