add few AI faces
Before Width: | Height: | Size: 153 KiB After Width: | Height: | Size: 153 KiB |
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 4.5 MiB After Width: | Height: | Size: 4.5 MiB |
Before Width: | Height: | Size: 5.4 MiB After Width: | Height: | Size: 5.4 MiB |
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.6 MiB |
BIN
assets/img/ai_face5.png
Normal file
After Width: | Height: | Size: 5.0 MiB |
BIN
assets/img/ai_face6.png
Normal file
After Width: | Height: | Size: 4.8 MiB |
BIN
assets/img/ai_face7.png
Normal file
After Width: | Height: | Size: 3.0 MiB |
BIN
assets/img/ai_face8.png
Normal file
After Width: | Height: | Size: 4.9 MiB |
3
chat.py
@ -14,6 +14,7 @@ current_dir = Path(__file__).parent if "__file__" in locals() else Path.cwd()
|
|||||||
css_file = current_dir / "src/styles/.css"
|
css_file = current_dir / "src/styles/.css"
|
||||||
assets_dir = current_dir / "assets"
|
assets_dir = current_dir / "assets"
|
||||||
icons_dir = assets_dir / "icons"
|
icons_dir = assets_dir / "icons"
|
||||||
|
img_dir = assets_dir / "img"
|
||||||
tg_svg = icons_dir / "tg.svg"
|
tg_svg = icons_dir / "tg.svg"
|
||||||
|
|
||||||
# --- GENERAL SETTINGS ---
|
# --- GENERAL SETTINGS ---
|
||||||
@ -79,7 +80,7 @@ if __name__ == "__main__":
|
|||||||
st.markdown("---")
|
st.markdown("---")
|
||||||
main()
|
main()
|
||||||
st.markdown("---")
|
st.markdown("---")
|
||||||
st.image(f"assets/{get_random_img(get_files_in_dir(assets_dir))}")
|
st.image(f"{img_dir}/{get_random_img(get_files_in_dir(img_dir))}")
|
||||||
st.markdown("---")
|
st.markdown("---")
|
||||||
selected_footer = option_menu(
|
selected_footer = option_menu(
|
||||||
menu_title=None,
|
menu_title=None,
|
||||||
|