waloneai commited on
Commit
1e7c8b1
Β·
verified Β·
1 Parent(s): 65cdc34

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +108 -108
app.py CHANGED
@@ -1,108 +1,108 @@
1
- import streamlit as st
2
- from rag import RAGProcessor
3
- import os
4
- from dotenv import load_dotenv
5
- import tempfile
6
-
7
- # Load environment variables
8
- load_dotenv()
9
-
10
- # Check for API key
11
- if not os.getenv('GOOGLE_API_KEY'):
12
- st.error("Please set the GOOGLE_API_KEY in your .env file.")
13
- st.stop()
14
-
15
- def initialize_session_state():
16
- """Initialize session state variables."""
17
- if "rag_processor" not in st.session_state:
18
- st.session_state.rag_processor = RAGProcessor()
19
- if "vector_store" not in st.session_state:
20
- st.session_state.vector_store = None
21
-
22
- def save_uploaded_files(uploaded_files):
23
- """Save uploaded files to a temporary directory and return file paths."""
24
- try:
25
- temp_dir = tempfile.mkdtemp()
26
- file_paths = []
27
-
28
- for uploaded_file in uploaded_files:
29
- file_path = os.path.join(temp_dir, uploaded_file.name)
30
- with open(file_path, "wb") as f:
31
- f.write(uploaded_file.getbuffer())
32
- file_paths.append(file_path)
33
-
34
- return file_paths
35
- except Exception as e:
36
- st.error(f"Error saving uploaded files: {e}")
37
- return []
38
-
39
- def main():
40
- st.set_page_config(
41
- page_title="Finance Buddy",
42
- page_icon="πŸ’°",
43
- layout="wide"
44
- )
45
-
46
- initialize_session_state()
47
-
48
- # Main header with emoji
49
- st.markdown("<div class='main-header'>", unsafe_allow_html=True)
50
- st.markdown(
51
- "<h1 style='text-align: center;'>πŸ’° Finance Buddy</h1>",
52
- unsafe_allow_html=True
53
- )
54
- st.markdown("</div>", unsafe_allow_html=True)
55
-
56
- # Sidebar
57
- with st.sidebar:
58
- st.image("PL_image-removebg-preview.png", use_column_width=True)
59
- st.title("πŸ“„ Document Analysis")
60
- uploaded_files = st.file_uploader(
61
- "Upload P&L Documents (PDF)",
62
- accept_multiple_files=True,
63
- type=['pdf']
64
- )
65
-
66
- if uploaded_files and st.button("Process Documents", key="process_docs"):
67
- with st.spinner("Processing documents..."):
68
- try:
69
- # Save uploaded files and process them
70
- file_paths = save_uploaded_files(uploaded_files)
71
- if file_paths:
72
- st.session_state.vector_store = st.session_state.rag_processor.process_documents(file_paths)
73
- st.success("βœ… Documents processed successfully!")
74
- except Exception as e:
75
- st.error(f"Error processing documents: {e}")
76
-
77
- # Main content
78
- st.markdown("""
79
- πŸ’‘ **Ask questions about your P&L statements and financial data.**
80
- """)
81
-
82
- # Query input
83
- query = st.text_input("πŸ” Ask your question:", key="query")
84
-
85
- if query:
86
- if not st.session_state.vector_store:
87
- st.warning("Please upload and process documents first!")
88
- else:
89
- with st.spinner("Analyzing..."):
90
- try:
91
- response = st.session_state.rag_processor.generate_response(
92
- query,
93
- st.session_state.vector_store
94
- )
95
- st.markdown("### πŸ“‹ Response:")
96
- st.markdown(f">{response}")
97
- except Exception as e:
98
- st.error(f"Error generating response: {e}")
99
-
100
- # Footer
101
- st.markdown("---")
102
- st.markdown(
103
- "<p style='text-align: center;'>πŸ’Ό Built with Streamlit & Google Generative AI</p>",
104
- unsafe_allow_html=True
105
- )
106
-
107
- if __name__ == "__main__":
108
- main()
 
1
+ import streamlit as st
2
+ from rag import RAGProcessor
3
+ import os
4
+ from dotenv import load_dotenv
5
+ import tempfile
6
+
7
+ # Load environment variables
8
+ load_dotenv()
9
+
10
+ # Check for API key
11
+ if not os.getenv('GOOGLE_API_KEY'):
12
+ st.error("Please set the GOOGLE_API_KEY in your .env file.")
13
+ st.stop()
14
+
15
+ def initialize_session_state():
16
+ """Initialize session state variables."""
17
+ if "rag_processor" not in st.session_state:
18
+ st.session_state.rag_processor = RAGProcessor()
19
+ if "vector_store" not in st.session_state:
20
+ st.session_state.vector_store = None
21
+
22
+ def save_uploaded_files(uploaded_files):
23
+ """Save uploaded files to a temporary directory and return file paths."""
24
+ try:
25
+ temp_dir = tempfile.mkdtemp()
26
+ file_paths = []
27
+
28
+ for uploaded_file in uploaded_files:
29
+ file_path = os.path.join(temp_dir, uploaded_file.name)
30
+ with open(file_path, "wb") as f:
31
+ f.write(uploaded_file.getbuffer())
32
+ file_paths.append(file_path)
33
+
34
+ return file_paths
35
+ except Exception as e:
36
+ st.error(f"Error saving uploaded files: {e}")
37
+ return []
38
+
39
+ def main():
40
+ st.set_page_config(
41
+ page_title="Finance Buddy",
42
+ page_icon="πŸ’°",
43
+ layout="wide"
44
+ )
45
+
46
+ initialize_session_state()
47
+
48
+ # Main header with emoji
49
+ st.markdown("<div class='main-header'>", unsafe_allow_html=True)
50
+ st.markdown(
51
+ "<h1 style='text-align: center;'>πŸ’° Walone Finance Buddy</h1>",
52
+ unsafe_allow_html=True
53
+ )
54
+ st.markdown("</div>", unsafe_allow_html=True)
55
+
56
+ # Sidebar
57
+ with st.sidebar:
58
+ st.image("PL_image-removebg-preview.png", use_column_width=True)
59
+ st.title("πŸ“„ Document Analysis")
60
+ uploaded_files = st.file_uploader(
61
+ "Upload P&L Documents (PDF)",
62
+ accept_multiple_files=True,
63
+ type=['pdf']
64
+ )
65
+
66
+ if uploaded_files and st.button("Process Documents", key="process_docs"):
67
+ with st.spinner("Processing documents..."):
68
+ try:
69
+ # Save uploaded files and process them
70
+ file_paths = save_uploaded_files(uploaded_files)
71
+ if file_paths:
72
+ st.session_state.vector_store = st.session_state.rag_processor.process_documents(file_paths)
73
+ st.success("βœ… Documents processed successfully!")
74
+ except Exception as e:
75
+ st.error(f"Error processing documents: {e}")
76
+
77
+ # Main content
78
+ st.markdown("""
79
+ πŸ’‘ **Ask questions about your P&L statements and financial data.**
80
+ """)
81
+
82
+ # Query input
83
+ query = st.text_input("πŸ” Ask your question:", key="query")
84
+
85
+ if query:
86
+ if not st.session_state.vector_store:
87
+ st.warning("Please upload and process documents first!")
88
+ else:
89
+ with st.spinner("Analyzing..."):
90
+ try:
91
+ response = st.session_state.rag_processor.generate_response(
92
+ query,
93
+ st.session_state.vector_store
94
+ )
95
+ st.markdown("### πŸ“‹ Response:")
96
+ st.markdown(f">{response}")
97
+ except Exception as e:
98
+ st.error(f"Error generating response: {e}")
99
+
100
+ # Footer
101
+ st.markdown("---")
102
+ st.markdown(
103
+ "<p style='text-align: center;'>πŸ’Ό Built by Infinity Tech</p>",
104
+ unsafe_allow_html=True
105
+ )
106
+
107
+ if __name__ == "__main__":
108
+ main()