Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
49 |
-
|
50 |
-
|
51 |
|
52 |
# Display a chat input widget.
|
53 |
-
|
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 = []
|