-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.env
More file actions
32 lines (30 loc) · 2.07 KB
/
config.env
File metadata and controls
32 lines (30 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#####################################################################################################
# DOCUMENTATION NOTES : #############################################################################
# File Creator: Alexander O. Smith (2024-present), aosmith@syr.edu
# Current Maintainer: Alexander O. Smith, aosmith@syr.edu
# Last Update: May 22, 2025
# CONFIGURATION INSTRUCTIONS:
# 1. Rename this file ".env"
# 2. For __alog_summary_main__.py and __talk_summary_main__.py files to work primary functions to
# work, you will need several things:
# a. An openAI account attached to a payment plan to produce an openAI api key.
# b. A Panoptes account with data access rights.
# c. Panoptes to generate a bearer token (See Panoptes documentation).
# d. If you have a-c, then the rest of the necessary config fields are accessible to you.
# 3. Use you organizational email address / listserv for SMTP SERVER CREDENTIALS
#####################################################################################################
#####################################################################################################
# OPENAI API : Needs access for all openAI LLMs
OPENAI_API_KEY = "<your-open-ai-API-key>"
# PANOPTES / ZOONIVERSE CREDENTIALS
PANOPTES_SLUG = "zooniverse/<your-zooniverse-slug>"
PANOPTES_USER = "<a-project-user-with-proper-data-access>"
PANOPTES_PASS = "<the-above-users-password>"
PANOPTES_ID = "<this-needs-to-be-generated-through-the-panoptes-api>"
PANOPTES_BEARER_TOKEN = "<this-needs-to-be-generated-through-the-panoptes-api>"
# ORGANIZATIONAL SMTP SERVER CREDENTIALS
SMTP_HOST = "smtp-relay.syr.edu" # SMTP Host Email
SMTP_USER = "s-ist-ccdsmail" # SMTP User Credential
SMTP_PASS = "zsgtk-kl88l-6mk2o-myxjy-78ik3" # SMTP Password
SMTP_FROM = "aosmith@syr.edu" # Who should send the email?
SMTP_TO = "gravityspy@listserv.syr.edu" # Who should receive the email?