NEXAS commited on
Commit
e3add4d
·
verified ·
1 Parent(s): d65fb02

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ load_dotenv()
16
  memory_storage = StreamlitChatMessageHistory(key="chat_messages")
17
  memory = ConversationBufferWindowMemory(memory_key="chat_history", human_prefix="User", chat_memory=memory_storage, k=3)
18
 
19
- image_bg = r"data/image/freepik-export-20240425023906eVmL.jpeg"
20
 
21
  def add_bg_from_local(image_file):
22
  with open(image_file, "rb") as image_file:
 
16
  memory_storage = StreamlitChatMessageHistory(key="chat_messages")
17
  memory = ConversationBufferWindowMemory(memory_key="chat_history", human_prefix="User", chat_memory=memory_storage, k=3)
18
 
19
+ image_bg = r"data/multimodal_bg.png"
20
 
21
  def add_bg_from_local(image_file):
22
  with open(image_file, "rb") as image_file: