Skip to content

Commit

Permalink
fix: 570ed9b에서 잘못된 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kooqooo committed Aug 8, 2024
1 parent 273ffc2 commit 8e826fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gene_question_2chain_ver.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from streamlit_extras.switch_page_button import switch_page
from util import local_css, read_prompt_from_txt

from config import MODEL_NAME, PATH
from config import MODEL_NAME, CSS_PATH

DATA_DIR = os.path.join(os.path.dirname(os.path.dirname(__file__)), "data")
st.session_state["FAV_IMAGE_PATH"] = os.path.join(DATA_DIR, "images", "favicon.png")
Expand All @@ -40,8 +40,8 @@
MAIN_IMG = st.session_state.MAIN_IMG
LOGO_IMG = st.session_state.LOGO_IMG

local_css(PATH + "/css/background.css")
local_css(PATH + "/css/2_generate_question.css")
local_css(os.path.join(CSS_PATH, "background.css"))
local_css(os.path.join(CSS_PATH, "2_generate_question.css"))
st.markdown(f"""
<style>
/* 로딩이미지 */
Expand Down

0 comments on commit 8e826fe

Please sign in to comment.