Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -2
src/streamlit_app.py
CHANGED
@@ -13,7 +13,7 @@ import time
|
|
13 |
from dotenv import load_dotenv
|
14 |
import re
|
15 |
|
16 |
-
load_dotenv()
|
17 |
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
|
18 |
GOOGLE_API_KEY = os.getenv("GOOGLE_API_KEY")
|
19 |
|
@@ -52,7 +52,7 @@ def parse_tech_stack(stack):
|
|
52 |
|
53 |
|
54 |
def initialize_google_sheets():
|
55 |
-
SERVICE_ACCOUNT_FILE = '
|
56 |
SCOPES = ['https://www.googleapis.com/auth/spreadsheets']
|
57 |
if not os.path.exists(SERVICE_ACCOUNT_FILE):
|
58 |
st.error(f"Service account file not found at {SERVICE_ACCOUNT_FILE}")
|
|
|
13 |
from dotenv import load_dotenv
|
14 |
import re
|
15 |
|
16 |
+
# load_dotenv()
|
17 |
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
|
18 |
GOOGLE_API_KEY = os.getenv("GOOGLE_API_KEY")
|
19 |
|
|
|
52 |
|
53 |
|
54 |
def initialize_google_sheets():
|
55 |
+
SERVICE_ACCOUNT_FILE = 'synapse-recruitment-34e7b48899b4.json'
|
56 |
SCOPES = ['https://www.googleapis.com/auth/spreadsheets']
|
57 |
if not os.path.exists(SERVICE_ACCOUNT_FILE):
|
58 |
st.error(f"Service account file not found at {SERVICE_ACCOUNT_FILE}")
|