Spaces:
Sleeping
Sleeping
Upload 2 files
Browse files- app.py +2 -0
- requirements.txt +5 -3
app.py
CHANGED
@@ -4,6 +4,8 @@ import os
|
|
4 |
from dotenv import load_dotenv
|
5 |
from styles import get_custom_css
|
6 |
from formulas import offer_formulas
|
|
|
|
|
7 |
|
8 |
# Set page to wide mode to use full width
|
9 |
st.set_page_config(layout="wide")
|
|
|
4 |
from dotenv import load_dotenv
|
5 |
from styles import get_custom_css
|
6 |
from formulas import offer_formulas
|
7 |
+
import PyPDF2
|
8 |
+
import docx
|
9 |
|
10 |
# Set page to wide mode to use full width
|
11 |
st.set_page_config(layout="wide")
|
requirements.txt
CHANGED
@@ -1,3 +1,5 @@
|
|
1 |
-
streamlit
|
2 |
-
google-generativeai
|
3 |
-
python-dotenv
|
|
|
|
|
|
1 |
+
streamlit
|
2 |
+
google-generativeai
|
3 |
+
python-dotenv
|
4 |
+
PyPDF2
|
5 |
+
python-docx
|