Orami01 commited on
Commit
f211f5b
Β·
1 Parent(s): 793769c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -45,12 +45,12 @@ pipe = pipeline("text-generation",model="mistralai/Mistral-7B-v0.1",model_type="
45
  qa = ConversationalRetrievalChain.from_llm(llm, retriever=docsearch.as_retriever())
46
 
47
  # Insert a chat message container.
48
- >>> with st.chat_message("user"):
49
- >>> st.write("Hello πŸ‘‹")
50
- >>> st.line_chart(np.random.randn(30, 3))
51
 
52
  # Display a chat input widget.
53
- >>> st.chat_input("Say something")
54
 
55
  while True:
56
  chat_history = []
 
45
  qa = ConversationalRetrievalChain.from_llm(llm, retriever=docsearch.as_retriever())
46
 
47
  # Insert a chat message container.
48
+ with st.chat_message("user"):
49
+ st.write("Hello πŸ‘‹")
50
+ st.line_chart(np.random.randn(30, 3))
51
 
52
  # Display a chat input widget.
53
+ st.chat_input("Say something")
54
 
55
  while True:
56
  chat_history = []