aiscientist commited on
Commit
cfee42a
·
verified ·
1 Parent(s): baccc56

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -10,14 +10,13 @@ def main():
10
 
11
  st.title("Personal Assistant")
12
  st.text("A BR CREATION")
13
-
 
14
  uploaded_file = st.file_uploader("Upload CSV file", type=["csv"])
15
  if uploaded_file is None:
16
  st.warning("Please upload a CSV file.")
17
  st.stop() # Stop execution if no file uploaded
18
 
19
- # Add the image
20
- st.image("chatbot.jpg", caption="Chatbot", use_column_width=True)
21
 
22
  from langchain.llms.openai import OpenAI
23
  from langchain.agents.agent_types import AgentType
 
10
 
11
  st.title("Personal Assistant")
12
  st.text("A BR CREATION")
13
+ st.image("chatbot.jpg", caption="Chatbot", width=378)
14
+
15
  uploaded_file = st.file_uploader("Upload CSV file", type=["csv"])
16
  if uploaded_file is None:
17
  st.warning("Please upload a CSV file.")
18
  st.stop() # Stop execution if no file uploaded
19
 
 
 
20
 
21
  from langchain.llms.openai import OpenAI
22
  from langchain.agents.agent_types import AgentType