curiousgeorge1292 commited on
Commit
8c7fd74
·
verified ·
1 Parent(s): edf1fbc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,8 +11,8 @@ client = Groq(api_key=os.environ.get("GROQ_API_KEY"))
11
 
12
  # Google Sheets setup
13
  SCOPES = ['https://www.googleapis.com/auth/spreadsheets']
14
- SERVICE_ACCOUNT_FILE = os.environ.get("MY_SERVICE_ACCOUNT_JSON") # Update with your service account file path
15
- SPREADSHEET_ID = 'your_google_sheet_id' # Update with your Google Sheet ID
16
 
17
  credentials = Credentials.from_service_account_file(SERVICE_ACCOUNT_FILE, scopes=SCOPES)
18
  service = build('sheets', 'v4', credentials=credentials)
 
11
 
12
  # Google Sheets setup
13
  SCOPES = ['https://www.googleapis.com/auth/spreadsheets']
14
+ SERVICE_ACCOUNT_FILE = os.environ.get("MY_SERVICE_ACCOUNT_JSON")
15
+ SPREADSHEET_ID = os.environ.get("GOOGLE_SHEET_ID")
16
 
17
  credentials = Credentials.from_service_account_file(SERVICE_ACCOUNT_FILE, scopes=SCOPES)
18
  service = build('sheets', 'v4', credentials=credentials)