Skip to content

Commit

Permalink
fix assets in streamlit
Browse files Browse the repository at this point in the history
  • Loading branch information
lqhl committed Jun 24, 2024
1 parent 4ee8f70 commit a5a25b5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes
File renamed without changes
4 changes: 2 additions & 2 deletions app/ui/home.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def render_home_header():
def _render_self_query_chain_content():
col1, col2 = st.columns([1, 1], gap='large')
with col1.container():
st.image(image='../assets/home_page_background_1.png',
st.image(image='./assets/home_page_background_1.png',
caption=None,
width=None,
use_column_width=True,
Expand All @@ -94,7 +94,7 @@ def _render_self_query_chain_content():
def _render_chat_bot_content():
col1, col2 = st.columns(2, gap='large')
with col1.container():
st.image(image='../assets/home_page_background_2.png',
st.image(image='./assets/home_page_background_2.png',
caption=None,
width=None,
use_column_width=True,
Expand Down

0 comments on commit a5a25b5

Please sign in to comment.