Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -192,7 +192,7 @@ def generate(system, prompt):
|
|
192 |
st.session_state.messages.append({"role": "user", "content": prompt})
|
193 |
with st.chat_message("assistant"):
|
194 |
response = get_llm_response(
|
195 |
-
|
196 |
)
|
197 |
st.markdown(response)
|
198 |
# Add assistant response to chat history
|
|
|
192 |
st.session_state.messages.append({"role": "user", "content": prompt})
|
193 |
with st.chat_message("assistant"):
|
194 |
response = get_llm_response(
|
195 |
+
system, prompt
|
196 |
)
|
197 |
st.markdown(response)
|
198 |
# Add assistant response to chat history
|