Spaces:
Running
Running
Update pages/1_CoursewithChat.py
Browse files
pages/1_CoursewithChat.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
import streamlit as st
|
|
|
2 |
|
3 |
# Create two columns
|
4 |
col1, col2 = st.columns(2)
|
@@ -67,4 +68,4 @@ with col2:
|
|
67 |
</body>
|
68 |
</html>
|
69 |
"""
|
70 |
-
|
|
|
1 |
import streamlit as st
|
2 |
+
import streamlit.components.v1 as components
|
3 |
|
4 |
# Create two columns
|
5 |
col1, col2 = st.columns(2)
|
|
|
68 |
</body>
|
69 |
</html>
|
70 |
"""
|
71 |
+
components.html(chat_html, height=600)
|