Kushwanth Chowday Kandala commited on
Commit
a37e99b
1 Parent(s): 79497a3

StreamlitAPIException: _repr_html_() is not a valid Streamlit command.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -85,7 +85,7 @@ def chat_actions():
85
  st.session_state["chat_history"].append(
86
  {
87
  "role": "assistant",
88
- "content": st.table(pd.DataFrame(response)),
89
  }, # This can be replaced with your chat response logic
90
  )
91
 
 
85
  st.session_state["chat_history"].append(
86
  {
87
  "role": "assistant",
88
+ "content": pd.DataFrame(response),
89
  }, # This can be replaced with your chat response logic
90
  )
91