S1131 commited on
Commit
289306d
·
verified ·
1 Parent(s): 6ca1207

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -1,9 +1,6 @@
1
  # app.py
2
 
3
- import sys
4
- sys.path.append('/home/user/app')
5
  import streamlit as st
6
- from app_utils import generate_answer
7
 
8
  # Streamlit configuration
9
  st.set_page_config(
@@ -16,6 +13,11 @@ st.set_page_config(
16
  )
17
 
18
 
 
 
 
 
 
19
  def main():
20
  st.title("💰 INFY Financial Analyst (2022-2024)")
21
  st.markdown("Ask questions about Infosys financial statements from the last 2 years.")
 
1
  # app.py
2
 
 
 
3
  import streamlit as st
 
4
 
5
  # Streamlit configuration
6
  st.set_page_config(
 
13
  )
14
 
15
 
16
+ import sys
17
+ sys.path.append('/home/user/app')
18
+
19
+ from app_utils import generate_answer
20
+
21
  def main():
22
  st.title("💰 INFY Financial Analyst (2022-2024)")
23
  st.markdown("Ask questions about Infosys financial statements from the last 2 years.")